diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
| commit | b0f6c44f36f3173f5d232d1adb02fc09dfdcc003 (patch) | |
| tree | 5ba44e4bdd60bf8dc4d63c4c9bf6b8ba358c51a9 /packages/frontend/src/components/MkMenu.vue | |
| parent | feat(frontend): 任意のユーザーリストをタイムラインページ... (diff) | |
| download | sharkey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.gz sharkey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.bz2 sharkey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.zip | |
refactor(frontend): use ESM
Diffstat (limited to 'packages/frontend/src/components/MkMenu.vue')
| -rw-r--r-- | packages/frontend/src/components/MkMenu.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkMenu.vue b/packages/frontend/src/components/MkMenu.vue index 3b20856e12..ec8383fe84 100644 --- a/packages/frontend/src/components/MkMenu.vue +++ b/packages/frontend/src/components/MkMenu.vue @@ -63,12 +63,12 @@ SPDX-License-Identifier: AGPL-3.0-only <script lang="ts"> import { Ref, defineAsyncComponent, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue'; -import { focusPrev, focusNext } from '@/scripts/focus'; +import { focusPrev, focusNext } from '@/scripts/focus.js'; import MkSwitchButton from '@/components/MkSwitch.button.vue'; import { MenuItem, InnerMenuItem, MenuPending, MenuAction, MenuSwitch, MenuParent } from '@/types/menu'; -import * as os from '@/os'; -import { i18n } from '@/i18n'; -import { isTouchUsing } from '@/scripts/touch'; +import * as os from '@/os.js'; +import { i18n } from '@/i18n.js'; +import { isTouchUsing } from '@/scripts/touch.js'; const childrenCache = new WeakMap<MenuParent, MenuItem[]>(); </script> |