This repository has been archived and is no longer maintained.
This is a simplified version of the responsive menu I implemented in the Admin Panel of a project some time ago. It uses Vue.js and Vue Router and shares some ideas of how to start puting the framework, router, styles and other concepts together.
The menu can be easily customized for your needs changing:
-
src/components/Menu.vue
where the root level itens can be found. -
src/components/support/menu-data.js
where the childs of root level itens can be found. -
src/router.js
where each route can be mapped to load the correspondent component. For the sake of simplicity, with exception of thehome
route, the sections are loaded dynamically in this example.
You can find the root level itens of the menu here. In this example, the four root itens (Home, Products, Customers, Account) are coded directly in the Menu component, but could be set as data properties or loaded from external resources.
Example of one root level iten definition:
<template>
...
<li>
<a
href="#"
@click.prevent="updateMenu('products')"
:class="highlightSection('products')"
>
<i class="fa fa-tag menu__icon" aria-hidden="true"></i>
Products
<i class="fa fa-chevron-right menu__arrow-icon" aria-hidden="true"></i>
</a>
</li>
...
</template>
You can set the childs of the root itens here.
export default {
// home is a section without childs, set as an empty array
home: [],
products: [
{
type: 'title',
txt: 'Products',
icon: 'fa fa-tag context-menu__title-icon',
},
{
type: 'link',
txt: 'List Products',
link: '/page',
},
{
type: 'link',
txt: 'Add New Product',
link: '/page',
},
{
type: 'link',
txt: 'Manage Categories',
link: '/page',
},
],
...
}
Add routes and components mappings here.
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home.vue'
Vue.use(Router)
export default new Router({
mode: 'history',
routes: [
// loads Home component
{
path: '/',
name: 'home',
component: Home
},
{
path: '/page/:sectionSlug',
name: 'dynamicContent',
// route level code-splitting
// this generates a separate chunk (dynamicContent.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "dynamicContent" */ './views/DynamicContent.vue')
},
]
})
The styles use Sass css extension language and BEM Methodology. Each component has the correspondent .scss
file in src/styles
, and is imported in src/App.vue
. This way, is easy to see how the final css is composed, and the order of the included files (note the media queries in the end of the .scss imports).
@import 'styles/layout.scss';
@import 'styles/menu-toggle-btn.scss';
@import 'styles/menu.scss';
@import 'styles/content-overlay.scss';
@import 'styles/media-queries.scss';
There's an online demo here.
yarn install
yarn run serve
yarn run build
yarn run lint
This menu is licensed under the Mit License.