How to call a method of another component ?
Like I have a component named Modal.vue . I have a method like below
<script>
    export default {
        name: 'modal'
        methods: {
            getUsers() {
                //some code here
            }
        },
        created: function () {
            this.getUsers();
        }
    }
</script>
I would like to call that method in another component named Dashboard.vue.
<script>
    export default {
        name: 'dashboard'
        methods: {
            add_adddress () { 
                this.getUsers();  // I would like to access here like this
                //some code here
            }
        },
    }
</script>
I read this question, but how can I use $emit,$on,$broadcast in my current setup ? 
 
    