Newer
Older
laserPTZFrontV2.0 / src / utils / composables / useGlobalProperties.ts
wangxitong on 22 May 2023 223 bytes first commit
import type { ComponentInternalInstance } from 'vue'

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