{{ item.content }}
<!-- 描点部分 -->
<view class="dot-container">
<view
class="dot"
v-for="(item, index) in items"
:key="index"
:class="{ active: index === currentIndex }"
@tap="scrollTo(index)"
></view>
</view>