index.js 428 B

1234567891011121314151617181920212223242526
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. import Home from 'vuejs/components/Content/Home'
  4. import Base from 'vuejs/components/Content/Base'
  5. Vue.use(VueRouter)
  6. export default new VueRouter({
  7. routes: [
  8. {
  9. path: '/',
  10. name: 'home',
  11. components: {
  12. 'home': Home
  13. }
  14. },
  15. {
  16. path: '/base',
  17. name:'base',
  18. components: {
  19. 'base': Base
  20. }
  21. },
  22. ]
  23. })