useConfigGlobal.ts 232 B

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