赞
踩
首先简单来说明一下 r o u t e r 和 router和 router和route的区别
//$router : 是路由操作对象,只写对象
//$route : 路由信息对象,只读对象
//操作 路由跳转
this.$router.push({
name:'hello',
params:{
name:'word',
age:'11'
}
})
//读取 路由参数接收
this.name = this.$route.params.name;
this.age = this.$route.params.age;
传参可以使用params和query两种方式。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。