全局变量的定义与获取
2025/3/3小于 1 分钟
// 在 main.ts 中定义
app.config.globalProperties.message = 'test message'
// 获取方式一
const { proxy } = getCurrentInstance()
console.log(proxy.message)
// 获取方式二
const app = getCurrentInstance().appContext.app
const globalProperties = app.config.globalProperties
console.log(globalProperties.message)