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

42 lines
1.1 KiB
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';
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
import PtDoc from './PTDoc.vue';
import PTImage from './PTImage.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.image',
2023-04-26 19:10:15 +00:00
label: 'Wireframe',
2023-04-21 13:40:29 +00:00
component: PTImage
},
{
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,
2023-05-09 06:49:06 +00:00
data: getPTOption('ProgressSpinner')
2023-04-21 13:40:29 +00:00
},
{
id: 'pt.demo',
label: 'Demo',
component: PtDoc
}
]
};
}
};
</script>