Newer
Older
carbon-metering-front / src / utils / composables / useGlobalProperties.ts
liyaguang on 9 Mar 2023 223 bytes first
import type { ComponentInternalInstance } from 'vue'

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