VUE v-if不起作用


<div id="projEdit" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true">
     <projEdit v-if="showEdit" :data="data"></projEdit>
</div>

上面是HTML中代码;下面是脚本:

export default {
    data () {
        return {
            showEdit:true,
        }
    },
    mounted(){
        var _this=this;
        $('#projEdit').on('hidden.bs.modal', function (){            
            _this.showEdit=false;  //这里不可以直接用this,否则会不起作用
        });
    }

}

第二次犯这种错误了,好记性不如烂笔头

猜你喜欢

转载自blog.csdn.net/happygirlnan/article/details/83058188