我的Main.vue文件中有一个ID,现在我想将其发送到模型窗口中。我该如何发送?
mounted() {
let taxId = (typeof(this.$parent.$parent.taxId) != 'undefined')?this.$parent.$parent.taxId:'';
this.readTax(taxId);
this.addTaxRate(taxId);
}
addTaxRate(taxId){
if ((typeof(this.$children[4]) != 'undefined')&&(typeof(this.$children[4].isTaxAddVisible) != 'undefined')){
this.$children[4].isTaxAddVisible = true;
}
}
通过addTaxRate函数,我需要将其发送到模型窗口。