mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
16 lines
426 B
TypeScript
16 lines
426 B
TypeScript
import { App } from 'vue'
|
|
import VxePulldownComponent from './src/pulldown'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const VxePulldown = Object.assign(VxePulldownComponent, {
|
|
install: function (app: App) {
|
|
app.component(VxePulldownComponent.name, VxePulldownComponent)
|
|
}
|
|
})
|
|
|
|
export const Pulldown = VxePulldown
|
|
|
|
dynamicApp.component(VxePulldownComponent.name, VxePulldownComponent)
|
|
|
|
export default VxePulldown
|