scroll to top button added

This commit is contained in:
nquidox 2025-09-25 20:53:58 +03:00
parent 033e54085d
commit 60110b1885
3 changed files with 81 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import CollectionToolbar from '@/views/CollectionView/CollectionToolbar.vue'
import CollectionMerchCard from '@/views/CollectionView/CollectionMerchCard.vue'
import { computed, onMounted, ref } from 'vue'
import { useMerchApi } from '@/api/merch.js'
import ScrollToTopButton from '@/components/ScrollToTopButton.vue'
const merchList = ref(null)
const loading = ref(true)
@ -48,6 +49,7 @@ const filteredMerch = computed(() => {
</router-link>
</n-gi>
</n-grid>
<ScrollToTopButton />
</template>
<style scoped></style>