primevue-mirror/doc/inputmask/pt/PTDoc.vue

84 lines
1.6 KiB
Vue

<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<div class="card flex justify-content-center">
<InputMask
id="basic"
v-model="value"
mask="99-999999"
placeholder="99-999999"
:pt="{
root: { class: 'border-teal-400' }
}"
/>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
basic: `
<InputMask
id="basic"
v-model="value"
mask="99-999999"
placeholder="99-999999"
:pt="{
root: { class: 'border-teal-400' }
}"
/>`,
options: `
<template>
<div class="card flex justify-content-center">
<InputMask
id="basic"
v-model="value"
mask="99-999999"
placeholder="99-999999"
:pt="{
root: { class: 'border-teal-400' }
}"
/>
</div>
</template>
<script>
export default {
data() {
return {
value: null
}
}
}
<\/script>
`,
composition: `
<template>
<div class="card flex justify-content-center">
<InputMask
id="basic"
v-model="value"
mask="99-999999"
placeholder="99-999999"
:pt="{
root: { class: 'border-teal-400' }
}"
/>
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(null);
<\/script>
`
}
};
}
};
</script>