12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import axios from 'axios'
- import VFormDesigner from '@/components/form-designer/index.vue'
- import VFormRender from '@/components/form-render/index.vue'
- import Draggable from '@/../lib/vuedraggable/dist/vuedraggable.umd.js'
- import {registerIcon} from '@/utils/el-icons'
- import 'virtual:svg-icons-register'
- import '@/iconfont/iconfont.css'
- import ContainerWidgets from '@/components/form-designer/form-widget/container-widget/index'
- import ContainerItems from '@/components/form-render/container-item/index'
- import { addDirective } from '@/utils/directive'
- import { installI18n } from '@/utils/i18n'
- import { loadExtension } from '@/extension/extension-loader'
- VFormDesigner.install = function (app) {
- addDirective(app)
- installI18n(app)
- loadExtension(app)
- app.use(ContainerWidgets)
- app.use(ContainerItems)
- registerIcon(app)
- app.component('draggable', Draggable)
- app.component(VFormDesigner.name, VFormDesigner)
- }
- VFormRender.install = function (app) {
- installI18n(app)
- loadExtension(app)
- app.use(ContainerItems)
- registerIcon(app)
- app.component(VFormRender.name, VFormRender)
- }
- const components = [
- VFormDesigner,
- VFormRender
- ]
- const install = (app) => {
- addDirective(app)
- installI18n(app)
- loadExtension(app)
- app.use(ContainerWidgets)
- app.use(ContainerItems)
- registerIcon(app)
- app.component('draggable', Draggable)
- components.forEach(component => {
- app.component(component.name, component)
- })
- window.axios = axios
- }
- if (typeof window !== 'undefined' && window.Vue) { /* script·½Ê½ÒýÈëʱ¸³Öµaxios£¡£¡ */
- //window.axios = axios
- }
- export default {
- install,
- VFormDesigner,
- VFormRender
- }
|