topfans/frontend/pages/components/HorizontalScroll.vue
2026-04-20 16:00:10 +08:00

29 lines
427 B
Vue

<template>
<scroll-view
class="h-scroll-container"
scroll-x
:show-scrollbar="false"
:enhanced="true"
:bounces="true"
:scroll-animation-duration="300"
:enable-flex="true"
>
<slot></slot>
</scroll-view>
</template>
<script setup>
defineOptions({
name: 'HorizontalScroll'
});
</script>
<style scoped>
.h-scroll-container {
width: 100%;
white-space: nowrap;
display: flex;
flex-direction: row;
}
</style>