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

24 lines
458 B
Vue
Raw Normal View History

2024-09-19 06:55:07 +00:00
<template>
<DocPTViewer :docs="docs">
<Checkbox v-model="checked" :binary="true" />
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
checked: false,
docs: [
{
data: getPTOptions('Checkbox'),
key: 'Checkbox'
}
]
};
}
};
</script>