mirror of
https://github.com/YunaiV/ruoyi-vue-pro.git
synced 2026-05-12 12:51:11 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import { ConfigGlobalTypes } from '@/types/configGlobal'
|
|
import { inject } from 'vue'
|
|
|
|
export const useConfigGlobal = () => {
|
|
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
|
|
|
|
return {
|
|
configGlobal
|
|
}
|
|
}
|