| | |
| | | <script setup lang="ts"> |
| | | import type { Component } from 'vue'; |
| | | |
| | | import type { ThemeModeType } from '..\..\..\..\..\..\..\types\src'; |
| | | import type { ThemeModeType } from '../../../../../../../types/src'; |
| | | |
| | | import { watch } from 'vue'; |
| | | |
| | | import { MoonStar, Sun, SunMoon } from '..\..\..\..\..\..\..\icons\src'; |
| | | import { $t } from '..\..\..\..\..\..\..\locales\src'; |
| | | import { usePreferences } from '..\..\..\..\..\..\..\preferences\src'; |
| | | import { MoonStar, Sun, SunMoon } from '../../../../../../../icons/src'; |
| | | import { $t } from '../../../../../../../locales/src'; |
| | | import { usePreferences } from '../../../../../../../preferences/src'; |
| | | |
| | | import SwitchItem from '../switch-item.vue'; |
| | | |