移动储能车V1版本
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112
  1. export function getDevtoolsGlobalHook() {
  2. return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;
  3. }
  4. export function getTarget() {
  5. // @ts-expect-error navigator and windows are not available in all environments
  6. return (typeof navigator !== 'undefined' && typeof window !== 'undefined')
  7. ? window
  8. : typeof globalThis !== 'undefined'
  9. ? globalThis
  10. : {};
  11. }
  12. export const isProxyAvailable = typeof Proxy === 'function';