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

256 lines
6.3 KiB
Vue
Raw Normal View History

2023-05-08 14:09:32 +00:00
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<div class="card">
<DataTable
:value="products"
sortMode="multiple"
:pt="{
2023-05-09 15:05:27 +00:00
table: { style: { minWidth: '50rem' } }
2023-05-08 14:09:32 +00:00
}"
>
2023-05-09 15:05:27 +00:00
<Column
field="code"
header="Code"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="name"
header="Name"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="category"
header="Category"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="quantity"
header="Quantity"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
2023-05-08 14:09:32 +00:00
</DataTable>
</div>
<DocSectionCode :code="code" :service="['ProductService']" />
</template>
<script>
import { ProductService } from '@/service/ProductService';
export default {
data() {
return {
products: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<DataTable
2023-05-08 14:09:32 +00:00
:value="products"
sortMode="multiple"
:pt="{
2023-05-09 15:05:27 +00:00
table: { style: { minWidth: '50rem' } }
2023-05-08 14:09:32 +00:00
}"
>
2023-05-09 15:05:27 +00:00
<Column
field="code"
header="Code"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="name"
header="Name"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="category"
header="Category"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="quantity"
header="Quantity"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
2023-10-15 09:38:39 +00:00
</DataTable>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-05-08 14:09:32 +00:00
<div class="card">
<DataTable
:value="products"
sortMode="multiple"
:pt="{
2023-05-09 15:05:27 +00:00
table: { style: { minWidth: '50rem' } }
2023-05-08 14:09:32 +00:00
}"
>
2023-05-09 15:05:27 +00:00
<Column
field="code"
header="Code"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="name"
header="Name"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="category"
header="Category"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="quantity"
header="Quantity"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
2023-05-08 14:09:32 +00:00
</DataTable>
</div>
</template>
<script>
import { ProductService } from '@/service/ProductService';
export default {
data() {
return {
products: null
};
},
mounted() {
ProductService.getProductsMini().then((data) => (this.products = data));
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-05-08 14:09:32 +00:00
<div class="card">
<DataTable
:value="products"
sortMode="multiple"
:pt="{
2023-05-09 15:05:27 +00:00
table: { style: { minWidth: '50rem' } }
2023-05-08 14:09:32 +00:00
}"
>
2023-05-09 15:05:27 +00:00
<Column
field="code"
header="Code"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="name"
header="Name"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="category"
header="Category"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
<Column
field="quantity"
header="Quantity"
sortable
:pt="{
sortBadge: { class: 'bg-primary' },
headerCell: { style: { width: '25%' } }
}"
/>
2023-05-08 14:09:32 +00:00
</DataTable>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue';
import { ProductService } from '@/service/ProductService';
onMounted(() => {
ProductService.getProductsMini().then((data) => (products.value = data));
});
const products = ref();
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-05-08 14:09:32 +00:00
data: `
{
id: '1000',
code: 'f230fh0g3',
name: 'Bamboo Watch',
description: 'Product Description',
image: 'bamboo-watch.jpg',
price: 65,
category: 'Accessories',
quantity: 24,
inventoryStatus: 'INSTOCK',
rating: 5
},
...
`
}
};
},
mounted() {
ProductService.getProductsMini().then((data) => (this.products = data));
}
};
</script>