Answer the question
In order to leave comments, you need to log in
How to access Vue instance from outside?
Hello, please tell me how to call a Vue instance method from outside. Tried mainVue.$options.methods, doesn't work.
Answer the question
In order to leave comments, you need to log in
I did this:
let myVue = new Vue({
el: "#app",
data: {},
methods: {
some(){
console.log(1);
}
}
});
myVue.some();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question