element-plus/packages/components/backtop/index.ts
三咲智子 0636e1e240
style: add import and stricter lint (#3440)
* style: add import lint

* chore: apply eslint rules

* chore: add stricter lint

* chore: lint all files

* auto fix

* manually fix

* restore build-indices.ts
2021-09-17 15:27:31 +08:00

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