56 lines
1.3 KiB
Vue
56 lines
1.3 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Invalid state is displayed using the <i>invalid</i> prop to indicate a failed validation. You can use this style when integrating with form validation libraries.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-content-center">
|
|
<InputMask v-model="value" mask="99-999999" placeholder="99-999999" class="p-invalid" />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: '',
|
|
code: {
|
|
basic: `
|
|
<InputMask v-model="value" mask="99-999999" placeholder="99-999999" class="p-invalid"/>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-content-center">
|
|
<InputMask v-model="value" mask="99-999999" placeholder="99-999999" class="p-invalid"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: ''
|
|
}
|
|
}
|
|
}
|
|
<\/script>
|
|
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-content-center">
|
|
<InputMask v-model="value" mask="99-999999" placeholder="99-999999" class="p-invalid"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref('');
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|