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

68 lines
1.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-02-02 13:39:18 +00:00
<p>A floating label appears on top of the input field when focused. Visit <PrimeVueNuxtLink to="/floatlabel">FloatLabel</PrimeVueNuxtLink> documentation for more information.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
2023-06-23 13:23:42 +00:00
<label for="ssn">SSN</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
2023-06-23 13:23:42 +00:00
<label for="ssn">SSN</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
2023-06-23 13:23:42 +00:00
<label for="ssn">SSN</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
value: ''
}
}
}
<\/script>
2024-01-30 08:04:48 +00:00
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<InputMask id="ssn" v-model="val2" mask="999-99-9999" placeholder="999-99-9999" />
2023-06-23 13:23:42 +00:00
<label for="ssn">SSN</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref('');
<\/script>
`
}
};
}
};
</script>