mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
b8c38a9fe5
* chore: enhance eslint rules * chore: enhance eslint rules
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
import InfiniteScroll from './src'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
const _InfiniteScroll = InfiniteScroll as SFCWithInstall<typeof InfiniteScroll>
|
|
|
|
_InfiniteScroll.install = (app: App) => {
|
|
app.directive('InfiniteScroll', _InfiniteScroll)
|
|
}
|
|
|
|
export default _InfiniteScroll
|
|
export const ElInfiniteScroll = _InfiniteScroll
|