添加全局属性

// ...
const app = createApp(App);
// 以绑定 alert 函数为例,alert.bind(this) 可以解决非 window 对象调用 alert() 时产生的 Illegal invocation 问题:
app.config.globalProperties.alert = alert.bind(this);
// ...
posted @ 2023-03-20 14:58  HopeLive  阅读(13)  评论(0)    收藏  举报