primevue-mirror/doc/treetable/SizeDoc.vue

132 lines
4.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>In addition to a regular table, alternatives with alternative sizes are available.</p>
</DocSectionText>
<div class="card">
<div class="flex justify-content-center mb-4">
<SelectButton v-model="size" :options="sizeOptions" optionLabel="label" dataKey="label" />
</div>
<TreeTable :value="nodes" :class="`p-treetable-${size.class}`">
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
</div>
<DocSectionCode :code="code" :service="['NodeService']" />
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null,
size: { label: 'Normal', value: 'normal' },
sizeOptions: [
{ label: 'Small', value: 'small', class: 'sm' },
{ label: 'Normal', value: 'normal' },
{ label: 'Large', value: 'large', class: 'lg' }
],
code: {
basic: `
<TreeTable :value="nodes" :class="\`p-treetable-\${size.class}\`">
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>`,
options: `
<template>
<div class="card">
<TreeTable :value="nodes" :class="\`p-treetable-\${size.class}\`">
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
</div>
</template>
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null,
size: { label: 'Normal', value: 'normal' },
sizeOptions: [
{ label: 'Small', value: 'small', class: 'sm' },
{ label: 'Normal', value: 'normal' },
{ label: 'Large', value: 'large', class: 'lg' }
]
}
},
mounted() {
NodeService.getTreeTableNodes().then((data) => (this.nodes = data));
}
}
<\/script>`,
composition: `
<template>
<div class="card">
<TreeTable :value="nodes" :class="\`p-treetable-\${size.class}\`">
<Column field="name" header="Name" expander></Column>
<Column field="size" header="Size"></Column>
<Column field="type" header="Type"></Column>
</TreeTable>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue';
import { NodeService } from '@/service/NodeService';
onMounted(() => {
NodeService.getTreeTableNodes().then((data) => (nodes.value = data));
});
const nodes = ref();
const size = ref({ label: 'Normal', value: 'normal' });
const sizeOptions = ref([
{ label: 'Small', value: 'small', class: 'sm' },
{ label: 'Normal', value: 'normal' },
{ label: 'Large', value: 'large', class: 'lg' }
]);
<\/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.getTreeTableNodes().then((data) => (this.nodes = data));
}
};
</script>