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

113 lines
3.6 KiB
Vue
Raw Permalink 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-09-20 11:22:33 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2024-09-20 11:22:33 +00:00
<InputNumber v-model="value1" inputId="over_label" mode="currency" currency="USD" locale="en-US" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel variant="in">
2024-09-30 07:24:04 +00:00
<InputNumber v-model="value2" inputId="in_label" mode="currency" currency="USD" locale="en-US" variant="filled" />
2024-09-20 11:22:33 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel variant="on">
<InputNumber v-model="value3" inputId="on_label" mode="currency" currency="USD" locale="en-US" />
<label for="on_label">On Label</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 {
2024-09-20 11:22:33 +00:00
value1: null,
value2: null,
value3: null,
2023-02-28 08:29:30 +00:00
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-01-30 08:04:48 +00:00
<FloatLabel>
2024-09-20 11:22:33 +00:00
<InputNumber v-model="value1" inputId="over_label" mode="currency" currency="USD" locale="en-US" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel variant="in">
2024-09-30 07:24:04 +00:00
<InputNumber v-model="value2" inputId="in_label" mode="currency" currency="USD" locale="en-US" variant="filled" />
2024-09-20 11:22:33 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel variant="on">
<InputNumber v-model="value3" inputId="on_label" mode="currency" currency="USD" locale="en-US" />
<label for="on_label">On Label</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-09-20 11:22:33 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2024-09-20 11:22:33 +00:00
<InputNumber v-model="value1" inputId="over_label" mode="currency" currency="USD" locale="en-US" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel variant="in">
2024-09-30 07:24:04 +00:00
<InputNumber v-model="value2" inputId="in_label" mode="currency" currency="USD" locale="en-US" variant="filled" />
2024-09-20 11:22:33 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel variant="on">
<InputNumber v-model="value3" inputId="on_label" mode="currency" currency="USD" locale="en-US" />
<label for="on_label">On Label</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 {
2024-09-20 11:22:33 +00:00
value1: null,
value2: null,
value3: null
2023-02-28 08:29:30 +00:00
};
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-09-20 11:22:33 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2024-09-20 11:22:33 +00:00
<InputNumber v-model="value1" inputId="over_label" mode="currency" currency="USD" locale="en-US" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel variant="in">
2024-09-30 07:24:04 +00:00
<InputNumber v-model="value2" inputId="in_label" mode="currency" currency="USD" locale="en-US" variant="filled" />
2024-09-20 11:22:33 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel variant="on">
<InputNumber v-model="value3" inputId="on_label" mode="currency" currency="USD" locale="en-US" />
<label for="on_label">On Label</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";
2024-09-20 11:22:33 +00:00
const value1 = ref(null);
const value2 = ref(null);
const value3 = ref(null);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>