tiny-vue/examples/sites/demos/pc/app/skeleton/complex-demo.vue

16 lines
211 B
Vue

<template>
<div>
<tiny-skeleton avatar></tiny-skeleton>
</div>
</template>
<script>
import { Skeleton } from '@opentiny/vue'
export default {
components: {
TinySkeleton: Skeleton
}
}
</script>