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.
14 lines
478 B
14 lines
478 B
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import VxePrintPageBreakComponent from '../print/src/page-break'
|
|
|
|
export const VxePrintPageBreak = Object.assign({}, VxePrintPageBreakComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxePrintPageBreakComponent.name as string, VxePrintPageBreakComponent)
|
|
}
|
|
})
|
|
|
|
VxeUI.component(VxePrintPageBreakComponent)
|
|
|
|
export const PrintPageBreak = VxePrintPageBreak
|
|
export default VxePrintPageBreak
|
|
|