Vue 解决路由同一相同页面 参数不同 页面不刷新问题
vue 路由相同页面 页面不刷新问题 vue 路由 页面 vue 页面不刷新 vue watch函数方法 vue 解决页面不刷新 vue 路由同一页面参数不同页面不刷新问题
·
Watch 监听路由
<template>
<div class="h1">{{name }}</div>
</template>
<script>
export default {
name: "Test",
data() {
return {
name : '',
}
},
created() {
}, watch: {
'$route': {
handler(newVal, oldVal) {
this.getview(newVal, oldVal)
},
deep: true,
immediate: true,
}
},methods:{
getview(to, from){
this.name = this.$route.query.name
}
}
}
</script>
更多推荐
已为社区贡献13条内容
所有评论(0)