10 lines
175 B
TypeScript
Raw Normal View History

2022-07-18 19:06:37 +08:00
import { inject } from 'vue'
export const useConfigGlobal = () => {
const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
return {
configGlobal
}
}