hx/components/fly-content/fly-content.vue

12 lines
289 B
Vue
Raw Normal View History

2024-10-18 18:09:15 +08:00
<template>
<view class="fly-content">
<view v-for="n in line" :key="n" class="h-10 leading-10 text-center">
很多内容这里是第{{ n }}
</view>
</view>
</template>
<script lang="ts" setup>
withDefaults(defineProps<{ line?: number }>(), { line: 10 })
</script>