在vue项目中,我们知道vue2定义全局变量是在main.js文件将变量挂载到vue.prototype.name="lisi",在页面通过this.name去调用。但是在vue3中,这个定义全局变量有所改变:
const app = createApp(App)
app.config.globalProperties.name="李四"在vue模板中的使用方式是:
import { getCurrentInstance } from 'vue'
const { appContext } = getCurrentInstance()
const name= appContext.config.globalProperties.name