17 lines
243 B
Vue
17 lines
243 B
Vue
<template>
|
|
<view>
|
|
<wd-skeleton :row-col="info" animation="gradient" />
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const info = [
|
|
{ height: '220px' }, 1, 1,
|
|
[{ width: '93px' }]
|
|
]
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
</style> |