I have a vue component and a vue element declaration as given below
Vue.component('todo-item', {
    template: '<li>This is a todo</li>'
    methods: {
        test: function() {
            
            // I am getting an error here
            app.aNewFunction();
        }
    }
})
var app = new Vue({
    el: '#app',
    data: {
        message: 'Hello Vue!'
    },
    methods: {
        aNewFunction: function() {
            alert("inside");
        }
    }
}) 
How to call a method in vue app from the vue component?
Just add a $on function to the $root instance and call form any other component accessing the $root and calling $emit function.
Using $refs Using the $refs property is a great and simple way of calling a components method from the parent component so to reference the before mentioned scenarios this would be the parent-to-child scenario.
Methods are defined either inside the method property or in Single File components. Here's how: inside the method property: **new Vue({ methods: { ** // add your function associated to event. in Single File Components: < script > export default { methods: { // add the function associated to event.
You can execute root instance method like this: this.$root.methodName()
Vue.component('todo-item', {
    template: '<li>This is a todo</li>',
    methods: {
        test: function() {
            this.$root.aNewFunction();
        }
    },
    mounted() {
        this.test();
    }
})
  
new Vue({
    el: '#app',
    template: '<todo-item></todo-item>',
    methods: {
        aNewFunction: function() {
            alert("inside");
        }
    }
})
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With