32 lines
681 B
Vue
32 lines
681 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Enable the <i>mask</i> option to hide the values in the input fields.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<InputOtp v-model="value" mask />
|
|
</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" mask />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import InputOtp from '@/volt/inputotp';
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref(null);
|
|
<\/script>
|
|
`);
|
|
</script>
|