mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-12 02:12:46 +08:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
![]() |
import { inject } from 'vue'
|
||
|
|
||
|
export const useConfigGlobal = () => {
|
||
|
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
|
||
|
|
||
|
return {
|
||
|
configGlobal
|
||
|
}
|
||
|
}
|