Created
October 27, 2018 17:29
-
-
Save viniciussvl/13a33fc7861d66c16a8c9176f87d2ff1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import Router from 'vue-router' | |
import Dashboard from './pages/Dashboard.vue' | |
import Login from './pages/Login.vue' | |
Vue.use(Router) | |
export default new Router({ | |
routes: [{ | |
path: '/', | |
name: 'Dashboard', | |
component: Dashboard, | |
meta: { | |
layout: 'default' | |
} | |
}, | |
{ | |
path: '/', | |
name: 'Login', | |
component: Login, | |
} | |
] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment