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

24 lines
432 B
Vue
Raw Normal View History

2024-09-19 07:01:54 +00:00
<template>
<DocPTViewer :docs="docs">
<Rating v-model="value" />
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
value: null,
docs: [
{
data: getPTOptions('Rating'),
key: 'Rating'
}
]
};
}
};
</script>