primevue-mirror/doc/treeselect/FloatLabelDoc.vue

112 lines
2.9 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>A floating label appears on top of the input field when focused.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<span class="p-float-label w-full md:w-20rem">
<TreeSelect v-model="selectedValue" :options="nodes" class="w-full" />
2023-02-28 08:29:30 +00:00
<label>Tree Select</label>
</span>
</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,
selectedValue: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<span class="p-float-label w-full md:w-20rem">
<TreeSelect v-model="selectedValue" :options="nodes" class="w-full" />
2023-07-06 14:08:11 +00:00
<label>Tree Select</label>
2023-10-15 09:38:39 +00:00
</span>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<span class="p-float-label w-full md:w-20rem">
<TreeSelect v-model="selectedValue" :options="nodes" class="w-full" />
2023-07-06 14:08:11 +00:00
<label>Tree Select</label>
2023-02-28 08:29:30 +00:00
</span>
</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,
selectedValue: null,
}
},
mounted() {
NodeService.getTreeNodes().then((data) => (this.nodes = data));
}
}
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<span class="p-float-label w-full md:w-20rem">
<TreeSelect v-model="selectedValue" :options="nodes" class="w-full" />
2023-07-06 14:08:11 +00:00
<label>Tree Select</label>
2023-02-28 08:29:30 +00:00
</span>
</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);
const selectedValue = ref(null);
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>