1、ref被用来给元素或子组件注册引用信息。引用信息将会注册在父组件的$refs对象上
//一、ref被用来给元素或子组件注册引用信息。引用信息将会注册在父组件的$refs对象上<div class="formBtn fl" @click="setBtn('4')">111</div>
<div class="formBtn fl" @click="setBtn('3')">222</div>
<div class="formBtn fl" @click="setBtn('55')">333</div>//子组件:(重点1:Vue中父组件想调用子组件的方法,可以在子组件中加上ref,然后通过this.$refs.ref.method调用)
<Set-Dialog :setDialogSave="setDialogSave" ref="SetDialog"></Set-Threshold-Dialog>import SetDialog from '@/components/xxx/setThreshold.vue'//在父组件中注册
components:{SetDialog
}methods:{//this.$refs.eleTable.子组件的方法名+()//this.$refs.eleTable.子组件的属性名setThresholdBtn(type) {//重点2:此处为父组件调用子组件方法并传this.$refs.SetDialog.show(ty