Newer
Older
xc-metering-front / src / utils / composables / useGlobalProperties.ts
liyaguang on 19 Jul 2023 223 bytes first commit
import type { ComponentInternalInstance } from 'vue'

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