function callback() {
console.log('This is callback');
}
const vueModal = new Vue({
store,
render: h => h(Content),
});
vueModal.$mount('#wo-popup');
function callback() {
console.log('This is callback');
}
Vue.use({
install(Vue) {
Vue.prototype.$callback = callback
}
})
{
someMethod() {
this.$callback(/* ... */)
}
}