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

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐