10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { ConfigGlobalTypes } from '@/types/configGlobal'
|
|
|
|
export const useConfigGlobal = () => {
|
|
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
|
|
|
|
return {
|
|
configGlobal
|
|
}
|
|
}
|