2025-03-03 20:23:53 +00:00
|
|
|
<template>
|
|
|
|
<DocComponent title="Vue ProgressBar Component" header="ProgressBar" description="ProgressBar is a process status indicator." :componentDocs="docs" />
|
|
|
|
</template>
|
|
|
|
|
2025-03-04 07:12:51 +00:00
|
|
|
<script setup>
|
2025-03-03 20:23:53 +00:00
|
|
|
import BasicDoc from '@/doc/progressbar/BasicDoc.vue';
|
|
|
|
import DynamicDoc from '@/doc/progressbar/DynamicDoc.vue';
|
|
|
|
import ImportDoc from '@/doc/progressbar/ImportDoc.vue';
|
|
|
|
import IndeterminateDoc from '@/doc/progressbar/IndeterminateDoc.vue';
|
|
|
|
import TemplateDoc from '@/doc/progressbar/TemplateDoc.vue';
|
2025-03-04 07:12:51 +00:00
|
|
|
import { ref } from 'vue';
|
2025-03-03 20:23:53 +00:00
|
|
|
|
2025-03-04 07:12:51 +00:00
|
|
|
const docs = ref([
|
|
|
|
{
|
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'dynamic',
|
|
|
|
label: 'Dynamic',
|
|
|
|
component: DynamicDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'template',
|
|
|
|
label: 'Template',
|
|
|
|
component: TemplateDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'indeterminate',
|
|
|
|
label: 'Indeterminate',
|
|
|
|
component: IndeterminateDoc
|
2025-03-03 20:23:53 +00:00
|
|
|
}
|
2025-03-04 07:12:51 +00:00
|
|
|
]);
|
2025-03-03 20:23:53 +00:00
|
|
|
</script>
|