UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

23 lines (19 loc) 484 B
import { VNode } from 'vue'; interface OrderListProps { modelValue?: any[]; dataKey?: string; selection?: any[]; metaKeySelection?: boolean; listStyle?: any; responsive?: boolean; breakpoint?: string; } declare class OrderList { $props: OrderListProps; $emit(eventName: 'reorder', e: { originalEvent: Event, value: any[]; direction: string}): this; $slots: { header: VNode[]; item: VNode[]; } } export default OrderList;