10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
import { inject } from 'vue'
|
||
|
|
||
|
export const useConfigGlobal = () => {
|
||
|
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
|
||
|
|
||
|
return {
|
||
|
configGlobal
|
||
|
}
|
||
|
}
|