houzhongjian
2024-10-28 43fee42e2f64bf2a2f78ae53f8e03c4a98eaaa6f
1
2
3
4
5
6
7
8
9
import { ConfigGlobalTypes } from '@/types/configGlobal'
 
export const useConfigGlobal = () => {
  const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
 
  return {
    configGlobal
  }
}