primevue-mirror/apps/showcase/doc/progressspinner/pt/index.vue

36 lines
904 B
Vue
Raw Normal View History

2023-04-21 13:40:29 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
2023-05-09 06:49:06 +00:00
<h1>ProgressSpinner Pass Through</h1>
2023-04-21 13:40:29 +00:00
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import DocApiTable from '@/components/doc/DocApiTable.vue';
2024-05-13 21:48:50 +00:00
import { getPTOptions } from '@/components/doc/helpers';
2024-09-18 13:06:57 +00:00
import PTViewer from './PTViewer.vue';
2023-04-21 13:40:29 +00:00
export default {
data() {
return {
docs: [
{
2024-09-18 13:06:57 +00:00
id: 'pt.viewer',
label: 'Viewer',
component: PTViewer
2023-04-21 13:40:29 +00:00
},
{
2023-05-02 09:36:48 +00:00
id: 'pt.doc.progressspinner',
2023-05-09 06:49:06 +00:00
label: 'ProgressSpinner PT Options',
2023-04-21 13:40:29 +00:00
component: DocApiTable,
2024-05-13 21:48:50 +00:00
data: getPTOptions('ProgressSpinner')
2023-04-21 13:40:29 +00:00
}
]
};
}
};
</script>