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

158 lines
5.1 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
<TreeSelect v-model="value1" inputId="over_label" :options="nodes" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:47:57 +00:00
<TreeSelect v-model="value2" inputId="in_label" :options="nodes" 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">
<TreeSelect v-model="value3" inputId="on_label" :options="nodes" 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" :service="['NodeService']" v-bind="$attrs" />
</template>
<script>
import { NodeService } from '/service/NodeService';
2023-07-06 14:03:51 +00:00
2023-02-28 08:29:30 +00:00
export default {
data() {
return {
nodes: null,
2024-09-20 09:28:05 +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-05-20 12:14:38 +00:00
<FloatLabel class="w-full md:w-80">
2024-09-20 09:28:05 +00:00
<TreeSelect v-model="value1" inputId="over_label" :options="nodes" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:47:57 +00:00
<TreeSelect v-model="value2" inputId="in_label" :options="nodes" 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">
<TreeSelect v-model="value3" inputId="on_label" :options="nodes" 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
<TreeSelect v-model="value1" inputId="over_label" :options="nodes" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:47:57 +00:00
<TreeSelect v-model="value2" inputId="in_label" :options="nodes" 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">
<TreeSelect v-model="value3" inputId="on_label" :options="nodes" 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>
2023-07-06 14:03:51 +00:00
import { NodeService } from './service/NodeService';
2023-02-28 08:29:30 +00:00
export default {
data() {
return {
nodes: null,
2024-09-20 09:28:05 +00:00
value1: null,
value2: null,
value3: null
2023-02-28 08:29:30 +00:00
}
},
mounted() {
2024-09-28 22:47:57 +00:00
NodeService.getTreeNodes().then((data) => (this.nodes = data));
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 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
<TreeSelect v-model="value1" inputId="over_label" :options="nodes" class="w-full" />
<label for="over_label">Over Label</label>
</FloatLabel>
<FloatLabel class="w-full md:w-80" variant="in">
2024-09-28 22:47:57 +00:00
<TreeSelect v-model="value2" inputId="in_label" :options="nodes" 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">
<TreeSelect v-model="value3" inputId="on_label" :options="nodes" 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, onMounted } from 'vue';
2023-07-06 14:03:51 +00:00
import { NodeService } from './service/NodeService';
2023-02-28 08:29:30 +00:00
const nodes = ref(null);
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
onMounted(() => {
NodeService.getTreeNodes().then((data) => (nodes.value = data));
});
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-04-17 12:57:34 +00:00
data: `
{
key: '0',
label: 'Documents',
data: 'Documents Folder',
icon: 'pi pi-fw pi-inbox',
children: [
{
key: '0-0',
label: 'Work',
data: 'Work Folder',
icon: 'pi pi-fw pi-cog',
children: [
{ key: '0-0-0', label: 'Expenses.doc', icon: 'pi pi-fw pi-file', data: 'Expenses Document' },
{ key: '0-0-1', label: 'Resume.doc', icon: 'pi pi-fw pi-file', data: 'Resume Document' }
]
},
{
key: '0-1',
label: 'Home',
data: 'Home Folder',
icon: 'pi pi-fw pi-home',
children: [{ key: '0-1-0', label: 'Invoices.txt', icon: 'pi pi-fw pi-file', data: 'Invoices for this month' }]
}
]
},
...`
2023-02-28 08:29:30 +00:00
}
};
},
mounted() {
NodeService.getTreeNodes().then((data) => (this.nodes = data));
}
};
</script>