<template>
<page>
<scroll-view scroll-y>
<view v-for="item in array" :key="item">{{ item }}</view>
</scroll-view>
</page>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const array = ref([1, 2, 3])
setTimeout(() => {
array.value = [6, 6, 6, 6, 6, 66, 6, 6, 6, 6]
}, 1000)
</script>
0 个回复