30 lines
764 B
Vue
30 lines
764 B
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs" />
|
||
|
<DocPTViewer :docs="ptViewerDoc">
|
||
|
<div class="w-full">
|
||
|
<Skeleton class="mb-2"></Skeleton>
|
||
|
<Skeleton width="10rem" class="mb-2"></Skeleton>
|
||
|
<Skeleton width="5rem" class="mb-2"></Skeleton>
|
||
|
<Skeleton height="2rem" class="mb-2"></Skeleton>
|
||
|
<Skeleton width="10rem" height="4rem"></Skeleton>
|
||
|
</div>
|
||
|
</DocPTViewer>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { getPTOptions } from '@/components/doc/helpers';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
ptViewerDoc: [
|
||
|
{
|
||
|
data: getPTOptions('Skeleton'),
|
||
|
key: 'Skeleton'
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|