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-18 11:18:46 +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-18 11:18:46 +00:00
|
|
|
<Password v-model="value1" inputId="over_label" />
|
|
|
|
<label for="over_label">Over Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="in">
|
|
|
|
<Password v-model="value2" inputId="in_label" />
|
|
|
|
<label for="in_label">In Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="on">
|
|
|
|
<Password v-model="value3" inputId="on_label" />
|
|
|
|
<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-18 11:18:46 +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-18 11:18:46 +00:00
|
|
|
<Password v-model="value1" inputId="over_label" />
|
|
|
|
<label for="over_label">Over Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="in">
|
|
|
|
<Password v-model="value2" inputId="in_label" />
|
|
|
|
<label for="in_label">In Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="on">
|
|
|
|
<Password v-model="value3" inputId="on_label" />
|
|
|
|
<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-18 11:18:46 +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-18 11:18:46 +00:00
|
|
|
<Password v-model="value1" inputId="over_label" />
|
|
|
|
<label for="over_label">Over Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="in">
|
|
|
|
<Password v-model="value2" inputId="in_label" />
|
|
|
|
<label for="in_label">In Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="on">
|
|
|
|
<Password v-model="value3" inputId="on_label" />
|
|
|
|
<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 {
|
2024-01-30 08:04:48 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2024-09-18 11:18:46 +00:00
|
|
|
value1: null,
|
|
|
|
value2: null,
|
|
|
|
value3: null,
|
2024-01-30 08:04:48 +00:00
|
|
|
}
|
|
|
|
}
|
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-18 11:18:46 +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-18 11:18:46 +00:00
|
|
|
<Password v-model="value1" inputId="over_label" />
|
|
|
|
<label for="over_label">Over Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="in">
|
|
|
|
<Password v-model="value2" inputId="in_label" />
|
|
|
|
<label for="in_label">In Label</label>
|
|
|
|
</FloatLabel>
|
|
|
|
|
|
|
|
<FloatLabel variant="on">
|
|
|
|
<Password v-model="value3" inputId="on_label" />
|
|
|
|
<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-18 11:18:46 +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>
|