You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
560 B
17 lines
560 B
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import VxeSplitPaneComponent from '../split/src/split-pane'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const VxeSplitPane = Object.assign({}, VxeSplitPaneComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeSplitPaneComponent.name as string, VxeSplitPaneComponent)
|
|
app.component('VxeSplitItem', VxeSplitPaneComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeSplitPane)
|
|
VxeUI.component(VxeSplitPaneComponent)
|
|
|
|
export const SplitPane = VxeSplitPane
|
|
export default VxeSplitPane
|
|
|