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

36 lines
868 B
Vue
Raw Permalink Normal View History

2023-05-06 20:34:27 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Rating Pass Through</h1>
</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-19 07:01:54 +00:00
import PTViewer from './PTViewer.vue';
2023-05-06 20:34:27 +00:00
export default {
data() {
return {
docs: [
{
2024-09-19 07:01:54 +00:00
id: 'pt.viewer',
label: 'Viewer',
component: PTViewer
2023-05-06 20:34:27 +00:00
},
{
2024-06-13 07:23:18 +00:00
id: 'pt.doc.rating',
2023-05-06 20:34:27 +00:00
label: 'Rating PT Options',
component: DocApiTable,
2024-05-13 21:48:50 +00:00
data: getPTOptions('Rating')
2023-05-06 20:34:27 +00:00
}
]
};
}
};
</script>