2025-03-03 19:54:07 +00:00
< template >
< DocComponent title = "Vue Skeleton Component" header = "Skeleton" description = "Skeleton is a placeholder to display instead of the actual content." :componentDocs ="docs" / >
< / template >
2025-03-04 07:12:51 +00:00
< script setup >
2025-03-03 19:54:07 +00:00
import CardDoc from '@/doc/skeleton/CardDoc.vue' ;
import ImportDoc from '@/doc/skeleton/ImportDoc.vue' ;
import ListDoc from '@/doc/skeleton/ListDoc.vue' ;
import ShapesDoc from '@/doc/skeleton/ShapesDoc.vue' ;
2025-03-04 07:12:51 +00:00
import { ref } from 'vue' ;
2025-03-03 19:54:07 +00:00
2025-03-04 07:12:51 +00:00
const docs = ref ( [
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
{
id : 'shapes' ,
label : 'Shapes' ,
component : ShapesDoc
} ,
{
id : 'card' ,
label : 'Card' ,
component : CardDoc
} ,
{
id : 'list' ,
label : 'List' ,
component : ListDoc
2025-03-03 19:54:07 +00:00
}
2025-03-04 07:12:51 +00:00
] ) ;
2025-03-03 19:54:07 +00:00
< / script >