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

24 lines
438 B
Vue

<template>
<DocPTViewer :docs="docs">
<InputOtp v-model="value" />
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
value: null,
docs: [
{
data: getPTOptions('InputOtp'),
key: 'InputOtp'
}
]
};
}
};
</script>