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

24 lines
471 B
Vue
Raw Normal View History

2024-09-18 13:06:57 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocPTViewer :docs="ptViewerDoc">
<ProgressSpinner />
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
ptViewerDoc: [
{
data: getPTOptions('ProgressSpinner'),
key: 'ProgressSpinner'
}
]
};
}
};
</script>