TA的每日心情 | 衰 2022-6-3 20:04 |
---|
签到天数: 568 天 [LV.9]以坛为家II
终身会员
- 积分
- 8468
|
<template>
<h3>ddd</h3>
</template>
<script>
import { getCurrentInstance } from "@vue/runtime-core"; //拿到当前组件实例
export default {
setup() {
const instance = getCurrentInstance();
// 当前实例的上下文的配置的全局属性
console.log(instance.appContext.config.globalProperties.$myName);
},
};
</script>
|
|