vant/src/search/index.ts
2021-03-08 17:14:55 +08:00

9 lines
214 B
TypeScript

import { withInstall } from '../utils';
import _Search from './Search';
const Search = withInstall<typeof _Search>(_Search);
export default Search;
export { Search };
export type { SearchShape } from './Search';