npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-admin-sidebar

v1.0.0

Published

A Vue.js admin sidbar component

Downloads

11

Readme

vue-admin-sidebar

A Vue.js admin sidbar component

Installation

npm i vue-admin-sidebar

Install the plugin globally.

//main.js
import Vue from 'vue'
import VueAdminSidebar from 'vue-admin-sidebar'
Vue.use(VueAdminSidebar)

Or import the component locally.

//App.vue
import { VueAdminSidebar } from 'vue-admin-sidebar'
export default {
  components: {
    VueAdminSidebar
  }
}

Basic Usage

<template>
  <vue-admin-sidebar :menu="menu" />
</template>

<script>
    export default {
        data() {
            return {
                menu: [
                    {
                        header: true,
                        title: 'Main Navigation',
                        hiddenOnCollapse: true
                    },
                    {
                        href: '/',
                        title: 'Dashboard',
                        icon: 'fa fa-user'
                    },
                    {
                        href: '/users',
                        title: 'User',
                        icon: 'fa fa-user',
                        child: [
                            {
                                href: '/users/sublink',
                                title: 'Sub Link'
                            }
                        ]
                    }
                ]
            }
        }
    }
</script>

Item Properties

menu [
    // item
    {
        href: '/',
        /* with vue-router you can use :to prop
        href: { path: '/' }
        you can mark link as external
        // external: true
        */
       
        title: 'Dashboard',

        // icon class
        icon: 'fa fa-user'
        /* or custom icon
        icon: {
            element: 'span',
            class: 'fa fa-user',
            // attributes: {}
            // text: ''
        }
        */

        /*
        badge: {
            text: 'new',
            class: 'vas--badge_default'
            // attributes: {}
            // element: 'span'
        }
        */
        
        // child: []
        // disabled: true
        // class: ''
        // attributes: {}
        // exactPath: true // match path only (ignore query and hash)
        // alias: '/path' // or array of paths (for advanced matching patterns see: https://github.com/pillarjs/path-to-regexp/tree/v1.7.0#parameters)
        // hidden: false
        // hiddenOnCollapse: true
    },

    // header item
    {
        header: true,
        title: 'Main Navigation'
        // hidden: false
        // hiddenOnCollapse: true
        // class: ''
        // attributes: {}
    },

    // component item
    {
        component: componentName
        // props: componentProps
        // hidden: false
        // hiddenOnCollapse: true
    }
]

Vue-router Support

if you are using vue-router, <router-link> will be used instead of hyperlink <a>

Props

props: {
    // Sidebar menu (required)
    menu: {
      type: Array,
      required: true
    },

    // Sidebar Collapse state and width
    collapsed: {
        type: Object,
        default: () => ({ value: false, width: "50px" }),
    },

    // Sidebar width (expanded)
    width: {
      type: String,
      default: '350px'
    },

    // Keep only one child opened at a time (first level only)
    showOneChild: {
      type: Boolean,
      default: false
    },

    // Keep all child open
    showChild: {
      type: Boolean,
      default: false
    },

    // Sidebar right to left
    rtl: {
      type: Boolean,
      default: false
    },

    // Hide toggle collapse btn
    hideToggle: {
      type: Boolean,
      default: false
    },

    // Sidebar theme (available themes: 'white-theme')
    theme: {
      type: String,
      default: ''
    },

    // Disable hover on collapse mode
    disableHover: {
      type: Boolean,
      default: false
    }
}

Events

<sidebar-menu @toggle-collapse="onToggleCollapse" @item-click="onItemClick" />
...
methods: {
    onToggleCollapse(collapsed) {},
    onItemClick(event, item, node) {}
}
...

@toggle-collapse(collapsed) Trigger on toggle btn click

@item-click(event, item, node) Trigger on item link click

Styles

All styles customization can be done in normal CSS by using this classes

.v-sidebar-menu {}
.v-sidebar-menu.vas_expanded {}
.v-sidebar-menu.vas_collapsed {}
.v-sidebar-menu.vas_rtl {}
.v-sidebar-menu .vas--item {}
.v-sidebar-menu .vas--item.vas--item_open {}
.v-sidebar-menu .vas--link {}
.v-sidebar-menu .vas--link.vas--link_active {}
.v-sidebar-menu .vas--link.vas--link_exact-active {}
.v-sidebar-menu .vas--link.vas--link_mobile-item {}
.v-sidebar-menu .vas--link.vas--link_level-[n] {}
.v-sidebar-menu .vas--link.vas--link_disabled {}
.v-sidebar-menu .vas--title {}
.v-sidebar-menu .vas--icon {}
.v-sidebar-menu .vas--arrow {}
.v-sidebar-menu .vas--arrow.vas--arrow_open {}
.v-sidebar-menu .vas--badge {}
.v-sidebar-menu .vas--header {}
.v-sidebar-menu .vas--list {}
.v-sidebar-menu .vas--dropdown>.vas--list {}
.v-sidebar-menu .vas--mobile-item {}
.v-sidebar-menu .vas--mobile-bg {}
.v-sidebar-menu .vas--toggle-btn {}

or you can override Sass variables (complete list of all variables can be found in src/scss/_variables.scss) and create your own theme

@import "custom-var.scss";
@import "vue-admin-sidebar/src/scss/vue-admin-sidebar.scss";

Customize Toggle & Dropdown Icons

The component use Font Awesome 5 Free as default, but you can either customize them using slots or by overriding css style

Slots

<sidebar-menu>
    <div slot="header">header</div>
    <div slot="footer">footer</div>
    <span slot="toggle-icon">toggle-icon</span>
    <span slot="dropdown-icon">dropdown-icon</span>
</sidebar-menu>

Credits