随笔分类 - VUE-Watch使用
摘要:子组件使用父组件值,要改变使用用赋值方法,定义新变量: 定义新变量:copyTrendObj 此时copyTrendObj 可以被赋值 props: { trendObj: { type: Object, }, }, watch:{ 'trendObj':function(val) { this.c
阅读全文
摘要:<template> <div> 父级 <childCom1 @click.native="fn()"></childCom1> {{a}} </div> </template> <script> import childCom1 from './childCom1.vue' export defa
阅读全文