diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-04-15 20:48:25 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-04-15 20:48:25 +0900 |
| commit | de19d9a4d429b4ce9d4713e647659fe6460bdd11 (patch) | |
| tree | 2a512096c6bcd91e09a3dcbf8abd2faeeab00635 /packages/frontend/src/pages/flash | |
| parent | コミット忘れ (diff) | |
| download | misskey-de19d9a4d429b4ce9d4713e647659fe6460bdd11.tar.gz misskey-de19d9a4d429b4ce9d4713e647659fe6460bdd11.tar.bz2 misskey-de19d9a4d429b4ce9d4713e647659fe6460bdd11.zip | |
refactor(frontend): MkHorizontalSwipe -> MkSwiper
Diffstat (limited to 'packages/frontend/src/pages/flash')
| -rw-r--r-- | packages/frontend/src/pages/flash/flash-index.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue index 98ab587b55..4ef33cbe0f 100644 --- a/packages/frontend/src/pages/flash/flash-index.vue +++ b/packages/frontend/src/pages/flash/flash-index.vue @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <PageWithHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"> <MkSpacer :contentMax="700"> - <MkHorizontalSwipe v-model:tab="tab" :tabs="headerTabs"> + <MkSwiper v-model:tab="tab" :tabs="headerTabs"> <div v-if="tab === 'featured'"> <MkPagination v-slot="{items}" :pagination="featuredFlashsPagination"> <div class="_gaps_s"> @@ -33,7 +33,7 @@ SPDX-License-Identifier: AGPL-3.0-only </div> </MkPagination> </div> - </MkHorizontalSwipe> + </MkSwiper> </MkSpacer> </PageWithHeader> </template> @@ -43,7 +43,7 @@ import { computed, ref } from 'vue'; import MkFlashPreview from '@/components/MkFlashPreview.vue'; import MkPagination from '@/components/MkPagination.vue'; import MkButton from '@/components/MkButton.vue'; -import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue'; +import MkSwiper from '@/components/MkSwiper.vue'; import { i18n } from '@/i18n.js'; import { definePage } from '@/page.js'; import { useRouter } from '@/router.js'; |