本文介绍了Vue2.0用 watch 观察 prop 变化(不触发),分享给大家,具体如下:
A 组件:
author 有监测到变化,并输出了 lili ; name 由 B 组件传入,却没有监测到,控制台没有输出。
在 B 组件里调用 A 组件,并传值给 name
import firstcomponent from './component/firstcomponent.vue'
export default {
data () {
return {
msg: 'Hello Vue!',name:'lili'
}
},components: { firstcomponent}
}