v-router路由
// 这是必须要有的,不是会报错 Vue.use(VueRouter); const routes = [ // 首页重定向goods组件 { path: '/', redirect: 'goods' }, { path: '/goods', component: goods }, { path: '/ratings', component: ratings } ]; const router = new VueRouter({ routes // (缩写)相当于 routes: routes }); // 把router放到vue即可 const app = new Vue({ router }).$mount('#app')