1.首先安装vue-router ,在项目的文件夹中使用npm命令即npm install vue-router –save(提示:如果你在vue-cli脚手架工具中已经选择安装路由可以不用执行这一步)
2.在实战中,一般路由放在src/router/index.js中具体操作如下
路由的配置,需要一个实例一个路由对象,然后在路由中配置中数组,具体如下,其中component组件需要自己import引入
new Router({
linkActiveClass: 'active',
routes: [
{
path: '/goods',
name: 'goods',
component: goods
},
{
path: '/comments',
name: 'comments',
component: comments
},
{
path: '/shops',
name: 'shops',
component: shops
}
]
})
3.然后在main.js中引入router文件夹下的index.js文件。
4.最后一步一定写,就是在app.vue咧写路由插座router-view
然后你就可以在router/index.js文件里随意配置你的路由了