29 lines
427 B
Vue
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>
|