vue2中我们可以在main.js里面通过Vue.prototype.$loading="ddddd"来定义全局变量。其他页面直接使用this.$loading就可以获取值。
vue3中也想实在这个功能怎么办?
import App from "./App.vue";import { createApp } from "vue";const app = createApp(App);
app.config.globalProperties.$loading="ddddd"
其他页面使用。vue3里面没有this但是可以通过proxy访问他的this
import { getCurrentInstance } from 'vue' const instance = getCurrentInstance()?.proxyconsole.log(instance.$loading);