2022-10-11 13:59:30 +08:00
|
|
|
import { ConfigGlobalTypes } from '@/types/configGlobal'
|
2022-07-18 19:06:37 +08:00
|
|
|
import { inject } from 'vue'
|
|
|
|
|
|
|
|
export const useConfigGlobal = () => {
|
|
|
|
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
|
|
|
|
|
|
|
|
return {
|
|
|
|
configGlobal
|
|
|
|
}
|
|
|
|
}
|