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

134 lines
5.0 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-09-20 09:28:05 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-05-20 12:14:38 +00:00
<FloatLabel class="w-full md:w-80">
2024-09-20 09:28:05 +00:00
<MultiSelect id="over_label" v-model="value1" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:38:06 +00:00
<MultiSelect id="in_label" v-model="value2" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" variant="filled" />
2024-09-20 09:28:05 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="on">
<MultiSelect id="on_label" v-model="value3" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<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 09:28:05 +00:00
value1: null,
value2: null,
value3: null,
2023-02-28 08:29:30 +00:00
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
],
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-05-20 12:14:38 +00:00
<FloatLabel class="w-full md:w-80">
2024-09-20 09:28:05 +00:00
<MultiSelect id="over_label" v-model="value1" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:38:06 +00:00
<MultiSelect id="in_label" v-model="value2" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" variant="filled" />
2024-09-20 09:28:05 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="on">
<MultiSelect id="on_label" v-model="value3" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<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 09:28:05 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-05-20 12:14:38 +00:00
<FloatLabel class="w-full md:w-80">
2024-09-20 09:28:05 +00:00
<MultiSelect id="over_label" v-model="value1" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:38:06 +00:00
<MultiSelect id="in_label" v-model="value2" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" variant="filled" />
2024-09-20 09:28:05 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="on">
<MultiSelect id="on_label" v-model="value3" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<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 09:28:05 +00:00
value1: null,
value2: null,
value3: null,
2023-02-28 08:29:30 +00:00
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]
};
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-09-20 09:28:05 +00:00
<div class="card flex flex-wrap justify-center items-end gap-4">
2024-05-20 12:14:38 +00:00
<FloatLabel class="w-full md:w-80">
2024-09-20 09:28:05 +00:00
<MultiSelect id="over_label" v-model="value1" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:38:06 +00:00
<MultiSelect id="in_label" v-model="value2" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" variant="filled" />
2024-09-20 09:28:05 +00:00
<label for="in_label">In Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="on">
<MultiSelect id="on_label" v-model="value3" :options="cities" optionLabel="name" filter :maxSelectedLabels="3" class="w-full" />
<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 09:28:05 +00:00
const value1 = ref(null);
const value2 = ref(null);
const value3 = ref(null);
2023-02-28 08:29:30 +00:00
const cities = ref([
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>