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)
}

上一篇 下一篇

猜你喜欢

热点阅读