Newer
Older
IntegratedFront / src / utils / composables / useGlobalProperties.ts
lyg on 1 Nov 223 bytes first
import type { ComponentInternalInstance } from 'vue'

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