github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/static_source/admin/src/hooks/web/useConfigGlobal.ts (about)

     1  import { ConfigGlobalTypes } from '@/types/configGlobal'
     2  import { inject } from 'vue'
     3  
     4  export const useConfigGlobal = () => {
     5    const configGlobal = inject('configGlobal', {}) as ConfigGlobalTypes
     6  
     7    return {
     8      configGlobal
     9    }
    10  }