mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +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
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import Autocomplete from './src/index.vue'
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Autocomplete.install = (app: App): void => {
|
|
app.component(Autocomplete.name, Autocomplete)
|
|
}
|
|
|
|
const _Autocomplete = Autocomplete as SFCWithInstall<typeof Autocomplete>
|
|
|
|
export default _Autocomplete
|
|
export const ElAutocomplete = _Autocomplete
|