UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

14 lines (10 loc) 391 B
import type { PickerOption } from '../pickercolumn' export interface PickerBaseEvent { selectedValue: (string | number)[] selectedOptions: PickerOption[] } export interface PickerChangeEvent extends PickerBaseEvent { columnIndex: number } export const pickerColumnsType = ['single', 'multiple', 'cascade'] as const export type PickerColumnsType = (typeof pickerColumnsType)[number]