vue路由和组件

import Vue from 'vue';
import Router from 'vue-router';
import store from '@/store/index';

Vue.use(Router);

const routes = [
  {
    path: '/',
    name: 'home',
    component: () => import(/* webpackChunkName: "home" */ 'viewsDif/Home.vue')
  },
  {
    path: '/solutions',
    name: 'solutions',
    component: () =>
      import(/* webpackChunkName: "solutions" */ 'viewsDif/Solutions.vue')
  }
];

export default new Router({
  mode: 'history',
  routes: routes
});
posted @ 2020-03-05 17:45  太阳锅锅  阅读(196)  评论(0编辑  收藏  举报