primevue-mirror/doc/inputotp/IntegerOnlyDoc.vue

55 lines
1.0 KiB
Vue
Raw Normal View History

2024-02-21 18:38:16 +00:00
<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-content-center">
<InputOtp v-model="value" integerOnly />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: null,
code: {
basic: `
<InputOtp v-model="value" integerOnly />
`,
options: `
<template>
<div class="card flex justify-content-center">
<InputOtp v-model="value" integerOnly />
</div>
</template>
<script>
export default {
data() {
return {
value: null
}
}
};
<\/script>
`,
composition: `
<template>
<div class="card flex justify-content-center">
<InputOtp v-model="value" integerOnly />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(null);
<\/script>
`
}
};
}
};
</script>