mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
import { App } from 'vue'
|
|
import VirtualList from './src/index.vue'
|
|
|
|
VirtualList.install = (app: App): void => {
|
|
app.component(VirtualList.name, VirtualList)
|
|
}
|
|
|
|
export default VirtualList
|