mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
272b8c76c8
* fix: some components miss install type * fix: some components miss install type
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import Pagination from './src/index'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _Pagination: SFCWithInstall<typeof Pagination> = Pagination as SFCWithInstall<typeof Pagination>
|
|
|
|
_Pagination.install = app => {
|
|
app.component(_Pagination.name, _Pagination)
|
|
}
|
|
|
|
export default _Pagination
|