primevue-mirror/apps/volt/doc/inputotp/IntegerOnlyDoc.vue

32 lines
701 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>When <i>integerOnly</i> is present, only integers can be accepted as input.</p>
</DocSectionText>
<div class="card flex justify-center">
<InputOtp v-model="value" integerOnly />
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import InputOtp from '@/volt/inputotp';
import { ref } from 'vue';
const value = ref(null);
const code = ref(`
<template>
<div class="card flex justify-center">
<InputOtp v-model="value" integerOnly />
</div>
</template>
<script setup>
import InputOtp from '@/volt/inputotp';
import { ref } from 'vue';
const value = ref(null);
<\/script>
`);
</script>