[Vuejs]-SetInlineProgress is not defined error FrameWork7-vue

0👍

Ok, after around 6 hours I finnaly reailised that in order to access the function, I need to reference it.

var app = new Vue({…blah});

All I had to do was: app.setInlineProgress() in my code, not setInlineProgress();

Hope this will be useful to someone.

Leave a comment