mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-11 09:52:45 +08: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
|
|
}
|
|
}
|