Skip to content

Instantly share code, notes, and snippets.

@wharley
Created July 8, 2019 21:21
Show Gist options
  • Save wharley/5a634f2dbabbe348ac6b0c8c1699506a to your computer and use it in GitHub Desktop.
Save wharley/5a634f2dbabbe348ac6b0c8c1699506a to your computer and use it in GitHub Desktop.
import Vue from 'vue';
import Router from 'vue-router';
import Main from './views/Main.vue';
Vue.use(Router);
export default new Router({
mode: 'history',
routes: [
{
path: '/:menu?/:submenu?/:tab?/:id?',
component: Main,
},
],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment