Refactor #4231 - For OrderList
parent
94bd3ef462
commit
b039254340
|
@ -108,6 +108,10 @@ export interface OrderListPassThroughOptions {
|
|||
* @see {@link BaseComponent.ComponentHooks}
|
||||
*/
|
||||
hooks?: ComponentHooks;
|
||||
/**
|
||||
* Used to control Vue Transition API.
|
||||
*/
|
||||
transition?: any;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
@focus="onListFocus"
|
||||
@blur="onListBlur"
|
||||
@keydown="onListKeyDown"
|
||||
v-bind="{ ...listProps, ...ptm('list') }"
|
||||
v-bind="{ ...listProps, ...ptm('list'), ...ptm('transition') }"
|
||||
>
|
||||
<template v-for="(item, i) of modelValue" :key="getItemKey(item, i)">
|
||||
<li
|
||||
|
|
Loading…
Reference in New Issue