Newer
Older
CorrOLFront / src / utils / composables / useGlobalProperties.ts
tanyue on 5 Mar 2024 223 bytes 20240305 初始提交
import type { ComponentInternalInstance } from 'vue'

export default function useGlobalProperties() {
  const { appContext } = getCurrentInstance() as ComponentInternalInstance
  return appContext.config.globalProperties
}