props: {
instance: {
type: String,
required: true
}
},
instanceID的值明明传过来了 但是在created里却获取不到
推荐写法 使用watch监听
instance: function(newVal, _oldVal) {
this.instanceId = newVal;
//在这里调用 created 里面的函数
}
微信扫一扫
props: {
instance: {
type: String,
required: true
}
},
instanceID的值明明传过来了 但是在created里却获取不到
推荐写法 使用watch监听
instance: function(newVal, _oldVal) {
this.instanceId = newVal;
//在这里调用 created 里面的函数
}
相关推荐