router-link 知识补充:
home页面
tag 可以把标签变成button
to="/home" 应该有”/“
replace 就让返回箭头没有效果了
编程式导航
this. r o u t e r . p u s h ( " / h o m e " ) 可 以 返 回 t h i s . router.push("/home") 可以返回 this. router.push("/home")可以返回this.router.replace("/home") 不可以返回
router-link 中携带参数 分析
(1 ) router.js 中
{
path:"/home/:id"
…
}
home页面
data(){
return{
homeId=“123”}
}
home页面
mounted(){
this.$route.params 获取
}
(2) router.js 中
{
path:"/home
…
}
home页面
data(){
return{
homeId=“123”}
}
home页面
mounted(){
this.$route.query 获取
}