sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
28 lines (27 loc) • 898 B
TypeScript
import { type StyleValue } from 'vue';
import { type CascaderOption, type CascaderProps } from '../cascader/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 {
(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;
}
export interface CascaderPopoutExpose {
}