perf(embed): improve embed performance (#14613)

* wip

* wip

* wip

* refactor

* refactor

---------

Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
This commit is contained in:
syuilo 2024-09-23 19:49:52 +09:00 committed by GitHub
parent 2aebdb8cc5
commit 3f0aaaa41e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 190 additions and 73 deletions

View file

@ -20,12 +20,12 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>
<script lang="ts" setup>
import { shallowRef } from 'vue';
import { useTemplateRef } from 'vue';
import EmNote from '@/components/EmNote.vue';
import EmPagination, { Paging } from '@/components/EmPagination.vue';
import { i18n } from '@/i18n.js';
const props = withDefaults(defineProps<{
withDefaults(defineProps<{
pagination: Paging;
noGap?: boolean;
disableAutoLoad?: boolean;
@ -34,7 +34,7 @@ const props = withDefaults(defineProps<{
ad: true,
});
const pagingComponent = shallowRef<InstanceType<typeof EmPagination>>();
const pagingComponent = useTemplateRef('pagingComponent');
defineExpose({
pagingComponent,