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

9 lines
199 B
TypeScript

import { withInstall } from '../utils';
import _Row from './Row';
const Row = withInstall<typeof _Row>(_Row);
export default Row;
export { Row };
export type { RowAlign, RowJustify } from './Row';