Blame view

src/components/Description/index.ts 308 Bytes
1
2
import { withInstall } from '../util';
3
4
5
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
export const Description = createAsyncComponent(() => import('./src/index'));
vben authored
6
7
withInstall(Description);
陈文彬 authored
8
9
export * from './src/types';
export { useDescription } from './src/useDescription';