index.ts 307 B

123456789101112
  1. /**
  2. * copy from element-ui
  3. */
  4. import { withInstall } from '../util';
  5. import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
  6. export const Scrollbar = createAsyncComponent(() => import('./src/index.vue'));
  7. withInstall(Scrollbar);
  8. export type { ScrollbarType } from './src/types';