birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
45 lines (44 loc) • 1.27 kB
TypeScript
import { PropType } from "vue";
import { SelectBindValue } from "./type";
declare const _sfc_main: import("vue").DefineComponent<{
/** 选项的值 */
value: {
type: PropType<SelectBindValue>;
default: string;
};
/** 选项文本内容 */
label: {
type: StringConstructor;
default: string;
};
/** 是否禁用 Disabled or not */
disabled: {
type: BooleanConstructor;
default: boolean;
};
}, {
name: string;
clsName: import("vue").ComputedRef<string[]>;
handleClick: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/** 选项的值 */
value: {
type: PropType<SelectBindValue>;
default: string;
};
/** 选项文本内容 */
label: {
type: StringConstructor;
default: string;
};
/** 是否禁用 Disabled or not */
disabled: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
value: SelectBindValue;
disabled: boolean;
label: string;
}, {}>;
export default _sfc_main;