useConfigGlobal.ts 203 B

123456789
  1. import { ConfigGlobalTypes } from '@/types/configGlobal'
  2. export const useConfigGlobal = () => {
  3. const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
  4. return {
  5. configGlobal
  6. }
  7. }