2023-01-18 12:34:52 +08:00

10 lines
203 B
TypeScript

import { ConfigGlobalTypes } from '@/types/configGlobal'
export const useConfigGlobal = () => {
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
return {
configGlobal
}
}