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

24 lines
455 B
Vue
Raw Normal View History

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