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