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/MkMention.vue | |
| parent | feat(frontend): 任意のユーザーリストをタイムラインページ... (diff) | |
| download | misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.gz misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.bz2 misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.zip | |
refactor(frontend): use ESM
Diffstat (limited to 'packages/frontend/src/components/MkMention.vue')
| -rw-r--r-- | packages/frontend/src/components/MkMention.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkMention.vue b/packages/frontend/src/components/MkMention.vue index 09f50ce8cf..ffc9ca3f4d 100644 --- a/packages/frontend/src/components/MkMention.vue +++ b/packages/frontend/src/components/MkMention.vue @@ -17,9 +17,9 @@ SPDX-License-Identifier: AGPL-3.0-only import { toUnicode } from 'punycode'; import { } from 'vue'; import tinycolor from 'tinycolor2'; -import { host as localHost } from '@/config'; -import { $i } from '@/account'; -import { defaultStore } from '@/store'; +import { host as localHost } from '@/config.js'; +import { $i } from '@/account.js'; +import { defaultStore } from '@/store.js'; const props = defineProps<{ username: string; |