mirror of
https://github.com/501351981/vue-office.git
synced 2025-07-15 07:32:19 +08:00
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
import VueOfficeDocxCom from './docx'
|
|
|
|
const components = [
|
|
VueOfficeDocxCom
|
|
]
|
|
|
|
const install = function (Vue) {
|
|
components.map(component => Vue.component(component.name, component))
|
|
}
|
|
|
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
install(window.Vue)
|
|
}
|
|
|
|
export const VueOfficeDocx = VueOfficeDocxCom;
|
|
export default {
|
|
install,
|
|
VueOfficeDocx: VueOfficeDocxCom
|
|
}
|