花都五屏网站建设,郑州网站开发,网站用模板为什么不利于seo推广,怎样创建网站在vue项目中#xff0c;我们知道vue2定义全局变量是在main.js文件将变量挂载到vue.prototype.namelisi#xff0c;在页面通过this.name去调用。但是在vue3中#xff0c;这个定义全局变量有所改变#xff1a;
const app createApp(App)
app.config.globalProp…在vue项目中我们知道vue2定义全局变量是在main.js文件将变量挂载到vue.prototype.namelisi在页面通过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