Blame view

src/components/Scrollbar/index.ts 307 Bytes
陈文彬 authored
1
2
3
4
/**
 * copy from element-ui
 */
vben authored
5
6
import { withInstall } from '../util';
7
8
9
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
export const Scrollbar = createAsyncComponent(() => import('./src/Scrollbar'));
vben authored
10
11
12
withInstall(Scrollbar);

export type { ScrollbarType } from './src/types';