Vue app code:
var app = new Vue({
    el: "#APP",
    data: {some data},
    methods: {
            some_method: function() {
                   ......
            }
});
some_js_func = function() {
       "How do I call 'some_method' to here"
};
some_js_func();
I tried by calling app.some_method(), but it's  not working.
 
    