33 changed files with 155 additions and 90 deletions
@ -1,2 +1,7 @@ |
|||
export { default as QrCode } from './src/index.vue'; |
|||
import { withInstall } from '../util'; |
|||
|
|||
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent'; |
|||
export const QrCode = createAsyncComponent(() => import('./src/index.vue')); |
|||
|
|||
withInstall(QrCode); |
|||
export * from './src/types'; |
|||
|
|||
@ -1,3 +1,9 @@ |
|||
export { default as BasicTree } from './src/BasicTree'; |
|||
export * from './src/types'; |
|||
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent'; |
|||
import { withInstall } from '../util'; |
|||
|
|||
export const BasicTree = createAsyncComponent(() => import('./src/BasicTree')); |
|||
|
|||
withInstall(BasicTree); |
|||
|
|||
export type { ContextMenuItem } from '/@/hooks/web/useContextMenu'; |
|||
export * from './src/types'; |
|||
|
|||
@ -1,5 +1,7 @@ |
|||
import VirtualScroll from './src/index'; |
|||
import { withInstall } from '../util'; |
|||
|
|||
withInstall(VirtualScroll); |
|||
export { VirtualScroll }; |
|||
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent'; |
|||
|
|||
export const VScroll = createAsyncComponent(() => import('./src/index')); |
|||
|
|||
withInstall(VScroll); |
|||
|
|||
Loading…
Reference in new issue