给子组件添加不同的 “key” 值,当 key 值改变时,Vue 会认为这是一个不同的组件,并重新创建它
props: ["L1Id"],
// 方式1: 使用key
computed: {
// 切换子组件时,发现created、mounted等钩子函数只会进一次,或者用 key
key(){
this.refreshData();
}
},
//方式2: 监听属性
watch: {
L1Id(newValue,oldValue){
this.refreshData();
}
},