primevue-mirror/apps/showcase/doc/inputotp/MaskDoc.vue

55 lines
999 B
Vue
Raw Normal View History

2024-02-21 18:38:16 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Enable the <i>mask</i> option to hide the values in the input fields.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-21 18:38:16 +00:00
<InputOtp v-model="value" mask />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: null,
code: {
basic: `
<InputOtp v-model="value" mask />
`,
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-21 18:38:16 +00:00
<InputOtp v-model="value" mask />
</div>
</template>
<script>
export default {
data() {
return {
value: null
}
}
};
<\/script>
`,
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-21 18:38:16 +00:00
<InputOtp v-model="value" mask />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(null);
<\/script>
`
}
};
}
};
</script>