primevue-mirror/apps/showcase/doc/inputmask/FilledDoc.vue

56 lines
1.3 KiB
Vue
Raw Permalink Normal View History

2024-02-02 11:49:09 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Specify the <i>variant</i> property as <i>filled</i> to display the component with a higher visual emphasis than the default <i>outlined</i> style.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-02 11:49:09 +00:00
<InputMask id="basic" v-model="value" variant="filled" mask="99-999999" placeholder="99-999999" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
basic: `
<InputMask id="basic" v-model="value" variant="filled" mask="99-999999" placeholder="99-999999" />
`,
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-02 11:49:09 +00:00
<InputMask id="basic" v-model="value" variant="filled" mask="99-999999" placeholder="99-999999" />
</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-02 11:49:09 +00:00
<InputMask id="basic" v-model="value" variant="filled" mask="99-999999" placeholder="99-999999" />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(null);
<\/script>
`
}
};
}
};
</script>