mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
0636e1e240
* style: add import lint * chore: apply eslint rules * chore: add stricter lint * chore: lint all files * auto fix * manually fix * restore build-indices.ts
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
import Backtop from './src/index.vue'
|
|
import type { App } from 'vue'
|
|
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Backtop.install = (app: App): void => {
|
|
app.component(Backtop.name, Backtop)
|
|
}
|
|
|
|
const _Backtop = Backtop as SFCWithInstall<typeof Backtop>
|
|
|
|
export default _Backtop
|
|
export const ElBacktop = _Backtop
|