Vue3 定义全局变量

在main.js文件中

import { createApp } from 'vue';

const app = createApp(App);
app.config.globalProperties.$key = "内容";// 定义全局变量
app.mount('#app');

在使用时


import {getCurrentInstance} from 'vue';

export default {
  setup(){
    const { proxy } = getCurrentInstance();
    console.log(proxy.$key);
  }
}

猜你喜欢

转载自blog.csdn.net/YiYeZhiQiuDe_yzq/article/details/124824879