博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vue动态路由
阅读量:5293 次
发布时间:2019-06-14

本文共 1140 字,大约阅读时间需要 3 分钟。

Vue动态路由
1、不同路由传值:动态路由

1、配置动态路由

routes: [

// 动态路径参数 以冒号开头
{ path: '/user/:id', component: User }
]

2、在对应的页面

this.$route.params获取动态路由的值

var aid=this.$route.params.aid;
this.$route.query //获取get传值 
//第一种跳转方式
// this.$router.push({ path: 'news' })
// this.$router.push({ path: '/content/495' });

//另一种跳转方式
// { path: '/news', component: News,name:'news' },
// router.push({ name: 'news', params: { userId: 123 }})
this.$router.push({ name: 'news'})

 

https://router.vuejs.org/

vue路由配置:

1.安装

npm install vue-router --save / cnpm install vue-router --save

2、引入并 Vue.use(VueRouter) (main.js)
import VueRouter from 'vue-router'

Vue.use(VueRouter)

3、配置路由

 

1、创建组件 引入组件

2、定义路由 (建议复制s)

const routes = [

{ path: '/foo', component: Foo },
{ path: '/bar', component: Bar },
{ path: '*', redirect: '/home' } /*默认跳转路由*/
]

3、实例化VueRouter

const router = new VueRouter({

routes // (缩写)相当于 routes: routes
})

4、挂载

new Vue({
el: '#app',
router,
render: h => h(App)
})

5 、根组件的模板里面放上这句话 <router-view></router-view>

 

6、路由跳转
<router-link to="/foo">Go to Foo</router-link>
<router-link to="/bar">Go to Bar</router-link>

 

转载于:https://www.cnblogs.com/shy1766IT/p/11070661.html

你可能感兴趣的文章
redis详解
查看>>
如何回报项目状态
查看>>
bootstrap3
查看>>
MySQL创建数据库和数据库表
查看>>
Codeforces Round #423 (Div. 2) C 思维,并查集 或 线段树 D 树构造,水
查看>>
Educational Codeforces Round 26 D dp,思维
查看>>
Spring Boot使用Servlet、Filter或Listener的方式
查看>>
ecshop中 transport.js/run() error:undefined
查看>>
POJ 1321 棋盘问题(DFS)
查看>>
第四周作业
查看>>
在ListView中获取当前行的索引
查看>>
Android 创世纪 第一天
查看>>
[重温数据结构]一种自平衡二叉查找树avl树的实现方法
查看>>
Java并发编程实战 第3章 对象的共享
查看>>
多线程系列(三):线程池基础
查看>>
新的学期,新的学习
查看>>
[Web安全]SQL注入
查看>>
yum install 下载后保存rpm包
查看>>
HDU 1247 Hat’s Words(字典树)
查看>>
从贝叶斯方法谈到贝叶斯网络
查看>>