实现模式弹出自动初始化不在vue js中工作

时间:2017-09-07 10:50:30

标签: laravel vue.js material-design materialize

Materialize模式弹出窗口在onclick函数中正常工作,但无法在mounted()或created()中工作

     testingmodel:function(){ 
             $('#firstlogintour').modal('open'); 
        }

    mounted() { 
        this.testingmodel(); 
    },

enter image description here

1 个答案:

答案 0 :(得分:0)

我从VueJs更新的事件中调用了相同的函数

updated() 
{ 
            this.testingmodel(); 
        },

**但是你必须通过在调用函数

上使用try catch来避免错误
testingmodel:function(){ 
             $('#firstlogintour').modal('open'); 
        }

Vue更新场景:

此函数将调用函数或方法加载时没有失败或任何错误。