mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
18 lines
576 B
TypeScript
18 lines
576 B
TypeScript
import { ElInfiniteScroll } from '@element-plus/components/infinite-scroll'
|
|
import { ElLoading } from '@element-plus/components/loading'
|
|
import { ElMessage } from '@element-plus/components/message'
|
|
import { ElMessageBox } from '@element-plus/components/message-box'
|
|
import { ElNotification } from '@element-plus/components/notification'
|
|
import { ElPopoverDirective } from '@element-plus/components/popover'
|
|
|
|
import type { Plugin } from 'vue'
|
|
|
|
export default [
|
|
ElInfiniteScroll,
|
|
ElLoading,
|
|
ElMessage,
|
|
ElMessageBox,
|
|
ElNotification,
|
|
ElPopoverDirective,
|
|
] as Plugin[]
|