UNPKG

@oiij/naive-ui

Version:

Some Composable Functions And Components for Vue 3

17 lines (16 loc) 539 B
import { _default } from "./SearchInput.vue.js"; import { ClassStyle } from "../data-table-plus/index.js"; import { ButtonProps, InputProps } from "naive-ui"; //#region src/components/search-input/index.d.ts type SearchInputProps = { value?: string | null; type?: ButtonProps['type']; placeholder?: string; loading?: boolean; autoTrigger?: boolean | number; searchButton?: 'text' | 'icon' | boolean; inputProps?: InputProps & ClassStyle; buttonProps?: ButtonProps & ClassStyle; }; //#endregion export { SearchInputProps };