已将ID发送到Vue中的模型窗口

时间:2018-12-27 05:27:08

标签: laravel vue.js

我的Main.vue文件中有一个ID,现在我想将其发送到模型窗口中。我该如何发送?

Main.vue

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函数,我需要将其发送到模型窗口。

0 个答案:

没有答案