Newer
Older
SpaceIntegration_front / src / utils / composables / useGlobalProperties.ts
liyaguang on 30 Oct 2023 223 bytes 巡检管理调试
import type { ComponentInternalInstance } from 'vue'

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