作者:手机用户2602922511 | 来源:互联网 | 2023-10-15 17:58
点击后defaultEducation的值明明改变了,但props传给子组件却watch不到
父组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
computed: {
geitfasa () {
document.addEventListener('tap', function (event) {
var focusTargetDom = event.target
if (focusTargetDom.tagName.toLowerCase() === 'input' && focusTargetDom.getAttribute('name') === 'checkdata') {
this.defaultEducation = focusTargetDom.value
console.log(this.defaultEducation)
}
}, true)
}
}
|
子组件