mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Merged new Docs and Demos
This commit is contained in:
parent
296cc217fb
commit
dfcc8ef4e7
1235 changed files with 130757 additions and 122640 deletions
102
doc/datatable/sort/MultipleColumnsDoc.vue
Normal file
102
doc/datatable/sort/MultipleColumnsDoc.vue
Normal file
|
@ -0,0 +1,102 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>Multiple columns can be sorted by defining <i>sortMode</i> as <i>multiple</i>. This mode requires metaKey (e.g. <i>⌘</i>) to be pressed when clicking a header.</p>
|
||||
</DocSectionText>
|
||||
<div class="card">
|
||||
<DataTable :value="products" sortMode="multiple" tableStyle="min-width: 50rem">
|
||||
<Column field="code" header="Code" sortable style="width: 25%"></Column>
|
||||
<Column field="name" header="Name" sortable style="width: 25%"></Column>
|
||||
<Column field="category" header="Category" sortable style="width: 25%"></Column>
|
||||
<Column field="quantity" header="Quantity" sortable style="width: 25%"></Column>
|
||||
</DataTable>
|
||||
</div>
|
||||
<DocSectionCode :code="code" :service="['ProductService']" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ProductService } from '@/service/ProductService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
products: null,
|
||||
code: {
|
||||
basic: `
|
||||
<DataTable :value="products" sortMode="multiple" tableStyle="min-width: 50rem">
|
||||
<Column field="code" header="Code" sortable style="width: 25%"></Column>
|
||||
<Column field="name" header="Name" sortable style="width: 25%"></Column>
|
||||
<Column field="category" header="Category" sortable style="width: 25%"></Column>
|
||||
<Column field="quantity" header="Quantity" sortable style="width: 25%"></Column>
|
||||
</DataTable>`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<DataTable :value="products" sortMode="multiple" tableStyle="min-width: 50rem">
|
||||
<Column field="code" header="Code" sortable style="width: 25%"></Column>
|
||||
<Column field="name" header="Name" sortable style="width: 25%"></Column>
|
||||
<Column field="category" header="Category" sortable style="width: 25%"></Column>
|
||||
<Column field="quantity" header="Quantity" sortable style="width: 25%"></Column>
|
||||
</DataTable>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ProductService } from '@/service/ProductService';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
products: null
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
ProductService.getProductsMini().then((data) => (this.products = data));
|
||||
}
|
||||
};
|
||||
<\/script>`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<DataTable :value="products" sortMode="multiple" tableStyle="min-width: 50rem">
|
||||
<Column field="code" header="Code" sortable style="width: 25%"></Column>
|
||||
<Column field="name" header="Name" sortable style="width: 25%"></Column>
|
||||
<Column field="category" header="Category" sortable style="width: 25%"></Column>
|
||||
<Column field="quantity" header="Quantity" sortable style="width: 25%"></Column>
|
||||
</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();
|
||||
|
||||
<\/script>`,
|
||||
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>
|
Loading…
Add table
Add a link
Reference in a new issue