primevue-mirror/doc/tree/pt/PTDoc.vue

121 lines
3.1 KiB
Vue
Raw Normal View History

2023-05-07 19:26:18 +00:00
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<div class="card flex justify-content-center">
<Tree
:value="nodes"
:pt="{
root: { class: 'w-full md:w-30rem' },
content: ({ props, state, context }) => ({
class: context.expanded ? 'bg-blue-100' : 'undefined'
})
}"
/>
</div>
<DocSectionCode :code="code" :service="['NodeService']" v-bind="$attrs" />
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null,
code: {
2023-08-16 13:58:31 +00:00
basic: `<Tree
2023-05-07 19:26:18 +00:00
:value="nodes"
:pt="{
root: { class: 'w-full md:w-30rem' },
content: ({ props, state, context }) => ({
class: context.expanded ? 'bg-blue-100' : 'undefined'
})
}"
/>`,
2023-08-16 13:58:31 +00:00
options: `<template>
2023-05-07 19:26:18 +00:00
<div class="card flex justify-content-center">
<Tree
:value="nodes"
:pt="{
root: { class: 'w-full md:w-30rem' },
content: ({ props, state, context }) => ({
class: context.expanded ? 'bg-blue-100' : 'undefined'
})
}"
/>
</div>
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null
};
},
mounted() {
NodeService.getTreeNodes().then((data) => (this.nodes = data));
}
}
<\/script>`,
2023-08-16 13:58:31 +00:00
composition: `<template>
2023-05-07 19:26:18 +00:00
<div class="card flex justify-content-center">
<Tree
:value="nodes"
:pt="{
root: { class: 'w-full md:w-30rem' },
content: ({ props, state, context }) => ({
class: context.expanded ? 'bg-blue-100' : 'undefined'
})
}"
/>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue';
import { NodeService } from '@/service/NodeService';
const nodes = 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>