ShiShiYiBan/yudao-ui-admin-vue3/src/hooks/web/useConfigGlobal.ts

11 lines
232 B
TypeScript
Raw Normal View History

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
}
}