Blame view

src/components/Verify/index.ts 372 Bytes
vben authored
1
import { withInstall } from '../util';
陈文彬 authored
2
3
4
5
6
7
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';

export const BasicDragVerify = createAsyncComponent(() => import('./src/DragVerify'));
export const RotateDragVerify = createAsyncComponent(() => import('./src/ImgRotate'));
vben authored
8
9
withInstall(BasicDragVerify, RotateDragVerify);
陈文彬 authored
10
export * from './src/types';