Materialize模式弹出窗口在onclick函数中正常工作,但无法在mounted()或created()中工作
testingmodel:function(){
$('#firstlogintour').modal('open');
}
mounted() {
this.testingmodel();
},
答案 0 :(得分:0)
我从VueJs更新的事件中调用了相同的函数
updated()
{
this.testingmodel();
},
**但是你必须通过在调用函数
上使用try catch来避免错误testingmodel:function(){
$('#firstlogintour').modal('open');
}
Vue更新场景:
此函数将调用函数或方法加载时没有失败或任何错误。