vue-router使用
Posted topsyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-router使用相关的知识,希望对你有一定的参考价值。
Vue Router 是 Vue.js 官方的路由管理器。它和 Vue.js 的核心深度集成,让构建单页面应用变得易如反掌。
包含的功能有:
- 嵌套的路由/视图表
- 模块化的、基于组件的路由配置
- 路由参数、查询、通配符
- 基于 Vue.js 过渡系统的视图过渡效果
- 细粒度的导航控制
- 带有自动激活的 CSS class 的链接
- html5 历史模式或 hash 模式,在 IE9 中自动降级
- 自定义的滚动条行为
Router实现路由跳转,子路由。
1.通过new Router创建路由实例使用 router-link 组件来导航.通过传入 `to` 属性指定链接.<router-link to="/A"></router-link>,如果组件中存在子路由,需要在父组件中添加<router-view></router-view>.嵌套路由实现方法:children:[{},{}]
<!--index.js--> import Vue from ‘vue‘ import Router from ‘vue-router‘ import First from ‘@/components/first‘ import A from ‘@/components/A‘ import B from ‘@/components/B‘ import A1 from ‘@/components/A1‘ Vue.use(Router) export default new Router({ routes: [ { path: ‘/‘, name: ‘First‘, component: First, children: [ { path: ‘/A‘, name: ‘A‘, component: A }, { path: ‘/A1‘, name: ‘A1‘, component: A1 }, { path: ‘/B‘, component: B }] } ] }) <!--first.vue--> <template> <div> <div>首页</div> <router-link to="/A">A页面</router-link> <router-link to="/B">B页面</router-link> <router-view></router-view> </div> </template> <script> </script> <style> </style> <!--A.vue--> <template> <div> <p>我是A</p> <router-link to="/A1">转向A1</router-link> <router-link to="/">返回首页</router-link> <router-view></router-view> </div> </template> <script> </script> <style> </style> <!--A1--> <template> <div> <p>我是A1</p> <router-link to="/A">返回上一级</router-link> <router-link to="/">返回首页</router-link> </div> </template> <script> </script> <style> </style>
以上是关于vue-router使用的主要内容,如果未能解决你的问题,请参考以下文章
Vue总结第五天:vue-router (使用模块化(创建Vue组件)机制编程)router-link 标签的属性路由代码跳转懒加载路由嵌套(子路由)路由传递数据导航守卫)