UNPKG

vue-lte-ui

Version:

The vue components wrapper for AdminLTE UI.

23 lines (18 loc) 351 B
import Vue from 'vue'; import VueRouter from 'vue-router'; Vue.use(VueRouter); import { Home, DemoContainer } from './pages'; const routes = [ { path: '/', component: Home }, { path: '*', component: DemoContainer } ]; export const router = new VueRouter({ mode: 'hash', routes }); router.beforeEach((to, from, next) => { next(); });