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

24 lines
457 B
Vue
Raw Normal View History

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