primevue-mirror/doc/inputmask/FloatLabelDoc.vue

66 lines
1.6 KiB
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>A floating label appears on top of the input field when focused.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<span class="p-float-label">
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
<label for="ssn">SSN</label>
</span>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
basic: `
<span class="p-float-label">
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
<label for="ssn">SSN</label>
</span>`,
options: `
<template>
<div class="card flex justify-content-center">
<span class="p-float-label">
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
<label for="ssn">SSN</label>
</span>
</div>
</template>
<script>
export default {
data() {
return {
value: ''
}
}
}
<\/script>
`,
composition: `
<template>
<div class="card flex justify-content-center">
<span class="p-float-label">
<InputMask id="ssn" v-model="val2" mask="999-99-9999" placeholder="999-99-9999" />
<label for="ssn">SSN</label>
</span>
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref('');
<\/script>
`
}
};
}
};
</script>