UNPKG

gtht-miniapp-sdk

Version:

gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

30 lines (29 loc) 1.01 kB
import { type StyleValue } from 'vue'; import { type CascaderOption, type CascaderProps } from '../cascader/common'; import { type TransitionHookEmits } from '../popup/common'; export interface CascaderPopoutProps extends CascaderProps { visible?: boolean; title?: string; showConfirm?: boolean; validateEvent?: boolean; popoutClass?: string; popoutStyle?: StyleValue; } export declare const defaultCascaderPopoutProps: { showConfirm: boolean; validateEvent: boolean; }; export interface CascaderPopoutSlots { top?(props: { tabIndex: number; }): any; } export interface CascaderPopoutEmits extends TransitionHookEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:model-value', value: any, selectedOptions: CascaderOption[]): void; (e: 'change', value: any, selectedOptions: CascaderOption[]): void; (e: 'select', option: CascaderOption, tabIndex: number): void; (e: 'confirm'): void; } export interface CascaderPopoutExpose { }