Newer
Older
adminAccountabilityFront / src / utils / composables / useGlobalProperties.ts
liyaguang on 11 Sep 2023 223 bytes first
import type { ComponentInternalInstance } from 'vue'

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