mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-10 01:12:45 +08:00
12 lines
289 B
Vue
12 lines
289 B
Vue
<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>
|