在vue-cli脚手架中配置一个vue-router前端路由
程序员文章站
2022-06-03 14:46:55
前言
这篇文章给大家讲解的是在vue-cli脚手架中如何配置vue-router前端路由的相关内容,分享出来供打击参考学习,下面来一起看看详细的介绍:
首先你需要一个m...
前言
这篇文章给大家讲解的是在vue-cli脚手架中如何配置vue-router前端路由的相关内容,分享出来供打击参考学习,下面来一起看看详细的介绍:
首先你需要一个main.js文件
//然后引入vue-router import vuerouter from 'vue-router'; //使用路由 vue.use(vuerouter); //当然如果需要有组件进来的时候也是需要引入的 import home from '../components/home.vue'; import news from '../components/news.vue'; import list from '../components/list.vue'; //创建路由实例 const router = new vuerouter({ routes: [ {path:'/home',component:home}, //path:路径 component:把你需要的组件挂载进来 { path:'/news', component:news, //当你需要嵌套路由的时候你可以这么做 //children子路由,接下来的json中的内容还是一样的,需要有最基本的path和component children:[ {path:'/news/list',component:list} ] }, {path:'*',redirect:'/home'} //404 //当路径错误或没有这个路径的时候我们会给予一个默认路径 ] }); //最后挂在到vue实例上 new vue({ router, el: '#app', render: h => h(app) })
html代码样式
<router-link to="/home">主页</router-link> <router-link to="/news">新闻</router-link> <router-link to="/news/list">列表</router-link> <router-view></router-view>
这样一个最基本的vue前端路由就完成了!!!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如有疑问大家可以留言交流,谢谢大家对的支持。
上一篇: JS实现搜索关键词的智能提示功能
下一篇: 猪肝补铁,吃猪肝怎么做好吃