<div 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('', function (){
_this.showEdit=false; //这里不可以直接用this,否则会不起作用
});
}
}
第二次犯这种错误了,好记性不如烂笔头