vue3全局挂载
2022-06-01 本文已影响0人
西叶web
入口文件挂载
// main.ts
app.config.globalProperties.$test = "test"
使用
import {getCurrentInstance} from 'vue'
setup(){
const gps= getCurrentInstance()!.appContext.config.globalProperties
// 读取或者使用
console.log(gps.$test)
}