refactor(frontend): use ESM
This commit is contained in:
		| @@ -78,18 +78,18 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||
| import { computed, watch } from 'vue'; | ||||
| import XPage from '@/components/page/page.vue'; | ||||
| import MkButton from '@/components/MkButton.vue'; | ||||
| import * as os from '@/os'; | ||||
| import { url } from '@/config'; | ||||
| import * as os from '@/os.js'; | ||||
| import { url } from '@/config.js'; | ||||
| import MkMediaImage from '@/components/MkMediaImage.vue'; | ||||
| import MkFollowButton from '@/components/MkFollowButton.vue'; | ||||
| import MkContainer from '@/components/MkContainer.vue'; | ||||
| import MkPagination from '@/components/MkPagination.vue'; | ||||
| import MkPagePreview from '@/components/MkPagePreview.vue'; | ||||
| import { i18n } from '@/i18n'; | ||||
| import { definePageMetadata } from '@/scripts/page-metadata'; | ||||
| import { pageViewInterruptors, defaultStore } from '@/store'; | ||||
| import { deepClone } from '@/scripts/clone'; | ||||
| import { $i } from '@/account'; | ||||
| import { i18n } from '@/i18n.js'; | ||||
| import { definePageMetadata } from '@/scripts/page-metadata.js'; | ||||
| import { pageViewInterruptors, defaultStore } from '@/store.js'; | ||||
| import { deepClone } from '@/scripts/clone.js'; | ||||
| import { $i } from '@/account.js'; | ||||
|  | ||||
| const props = defineProps<{ | ||||
| 	pageName: string; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo