Improved docs
parent
c9d765b78d
commit
bd8d3c7869
|
@ -164,17 +164,28 @@ import OrderList from 'primevue/orderlist';
|
||||||
</a>
|
</a>
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<template v-pre>
|
<template v-pre>
|
||||||
<OrderList v-model="cars" listStyle="height:auto" dataKey="vin">
|
<div>
|
||||||
|
<div class="content-section introduction">
|
||||||
|
<div class="feature-intro">
|
||||||
|
<h1>OrderList</h1>
|
||||||
|
<p>OrderList is used to managed the order of a collection.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content-section implementation">
|
||||||
|
<OrderList v-model="cars" listStyle="height:auto" dataKey="vin">
|
||||||
<template #header>
|
<template #header>
|
||||||
List of Cars
|
List of Cars
|
||||||
</template>
|
</template>
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>{{slotProps.item.brand} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</OrderList>
|
</OrderList>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
|
|
|
@ -220,7 +220,16 @@ import PickList from 'primevue/picklist';
|
||||||
</a>
|
</a>
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<template v-pre>
|
<template v-pre>
|
||||||
<PickList v-model="cars" dataKey="vin">
|
<div>
|
||||||
|
<div class="content-section introduction">
|
||||||
|
<div class="feature-intro">
|
||||||
|
<h1>PickList</h1>
|
||||||
|
<p>PickList is used to reorder items between different lists.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="content-section implementation">
|
||||||
|
<PickList v-model="cars" listStyle="height:342px" dataKey="vin">
|
||||||
<template #sourceHeader>
|
<template #sourceHeader>
|
||||||
Available
|
Available
|
||||||
</template>
|
</template>
|
||||||
|
@ -233,7 +242,11 @@ import PickList from 'primevue/picklist';
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<PickListDoc />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue