【发布时间】:2022-07-22 23:16:10
【问题描述】:
谁能帮我配置一个全局函数,我可以在我的所有 Vue 文件中调用它?
当我的 Vue 文件中有这个时:
@click="ModalShow.show('my-create')"
在app.js我定义了这个常量:
const Modals = {
show(screen) {
alert(screen);
// other logic that i implement that should be triggered
},
};
但我不断得到:
TypeError: undefined is not an object (evaluating '_ctx.Modals.show')
我错过了什么?这是一个带有组合 API 的 Vue 项目
【问题讨论】:
标签: javascript typescript vue.js vuejs3