You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 311B

5 years ago
123456789101112131415161718192021
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. import Home from '../views/Home.vue'
  4. Vue.use(VueRouter)
  5. const routes = [
  6. {
  7. path: '/',
  8. name: 'Home',
  9. component: Home
  10. }
  11. ]
  12. const router = new VueRouter({
  13. mode: 'history',
  14. base: process.env.BASE_URL,
  15. routes
  16. })
  17. export default router