2024-09-20 09:28:05 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>IftaLabel is used to create infield top aligned labels. Visit <PrimeVueNuxtLink to="/iftalabel">IftaLabel</PrimeVueNuxtLink> documentation for more information.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-center">
|
|
|
|
<IftaLabel class="w-full md:w-80">
|
2024-09-28 22:47:57 +00:00
|
|
|
<TreeSelect v-model="selectedValue" inputId="t_file" :options="nodes" class="w-full" variant="filled" />
|
2024-09-20 09:28:05 +00:00
|
|
|
<label for="t_file">File</label>
|
|
|
|
</IftaLabel>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { NodeService } from '/service/NodeService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
nodes: null,
|
|
|
|
selectedValue: null,
|
|
|
|
code: {
|
|
|
|
basic: `
|
|
|
|
<IftaLabel class="w-full md:w-80">
|
2024-09-28 22:47:57 +00:00
|
|
|
<TreeSelect v-model="selectedValue" inputId="t_file" :options="nodes" class="w-full" variant="filled" />
|
2024-09-20 09:28:05 +00:00
|
|
|
<label for="t_file">File</label>
|
|
|
|
</IftaLabel>
|
|
|
|
`,
|
|
|
|
options: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
|
|
|
<IftaLabel class="w-full md:w-80">
|
2024-09-28 22:47:57 +00:00
|
|
|
<TreeSelect v-model="selectedValue" inputId="t_file" :options="nodes" class="w-full" variant="filled" />
|
2024-09-20 09:28:05 +00:00
|
|
|
<label for="t_file">File</label>
|
|
|
|
</IftaLabel>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { NodeService } from './service/NodeService';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
nodes: null,
|
|
|
|
selectedValue: null,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
2024-09-28 22:47:57 +00:00
|
|
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
2024-09-20 09:28:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
<\/script>
|
|
|
|
`,
|
|
|
|
composition: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
|
|
|
<IftaLabel class="w-full md:w-80">
|
2024-09-28 22:47:57 +00:00
|
|
|
<TreeSelect v-model="selectedValue" inputId="t_file" :options="nodes" class="w-full" variant="filled" />
|
2024-09-20 09:28:05 +00:00
|
|
|
<label for="t_file">File</label>
|
|
|
|
</IftaLabel>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref, onMounted } from 'vue';
|
|
|
|
import { NodeService } from './service/NodeService';
|
|
|
|
|
|
|
|
const nodes = ref(null);
|
|
|
|
const selectedValue = ref(null);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
NodeService.getTreeNodes().then((data) => (nodes.value = data));
|
|
|
|
});
|
|
|
|
<\/script>
|
|
|
|
`,
|
|
|
|
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' }]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
...`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|