UNPKG

me-bootstrap

Version:
24 lines (20 loc) 404 B
/* eslint-disable no-unused-vars */ import VueRouter from 'vue-router' import routes from 'src/routes' export default { router: null, install (Vue) { const router = new VueRouter({ routes, mode: 'history' }) Vue.mixin({ beforeCreate () { if (this.$root === this) { this.$options.router = router } } }) Vue.use(VueRouter) } }