@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
21 lines (20 loc) • 546 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
import { SearchField, SearchFieldValueType } from "./composition/types";
export declare const fieldSearchBoxProps: {
/**
* 字段列表
* @default []
*/
fields: {
type: PropType<SearchField[]>;
default: never[];
};
defaultValue: {
type: PropType<{
field: string;
value: SearchFieldValueType;
}>;
default: null;
};
};
export type FieldSearchBoxProps = ExtractPropTypes<typeof fieldSearchBoxProps>;