@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
25 lines (24 loc) • 841 B
TypeScript
/**
* Search Box 组件为开发者提供了一个具有搜索功能的组件。
*
* @example
* ```vue
* <f-search-box>
* <template #default="listItemProps">
* <div>{{ listItemProps.item.name}}<span class="badge badge-border-info ml-3">{{ listItemProps.item.position }}</span></div>
* </template>
* </f-search-box>
* ```
*
* @public
*/
declare const _default: import("vue").DefineComponent<{
[x: string]: any;
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<{
[x: string]: any;
}> & Readonly<{
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}>, {
[x: string]: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;