15 lines
270 B
Vue
15 lines
270 B
Vue
<template>
|
|
<view>
|
|
<wd-skeleton :row-col="info" animation="gradient" />
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const count = 10
|
|
const info = Array.from({ length: count }, (_, index) => ({ height: '20px' }))
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
</style> |