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