Newer
Older
intelligentRobot / src / utils / composables / useGlobalProperties.ts
wangxitong on 3 Sep 223 bytes first commit
import type { ComponentInternalInstance } from 'vue'

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