xaboy / form-create-designer

好用的Vue低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。支持PC端和移动端,目前在政务系统、OA系统、ERP系统、电商系统、流程管理等系统中已稳定应用。
https://view.form-create.com/
MIT License
1.65k stars 376 forks source link

vue3版本全局引入出错 #92

Closed adou2236 closed 1 year ago

adou2236 commented 1 year ago

使用window.formCreate.create()引入出现这种情况 image

xaboy commented 1 year ago

element-plus需要自己导入,并全局挂载,然后在vue组件的mounted中通过 this.$formCreate.create方法生成

adou2236 commented 1 year ago

element-plus需要自己导入,并全局挂载,然后在vue组件的mounted中通过 this.$formCreate.create方法生成

如果不在vue文件中使用该怎么做呢

xaboy commented 1 year ago

<div id="app">

  </div>
const app = Vue.createApp({
    mounted(){
        this.$formCreate([])
    }
});
app.use(ElementPlus).use(formCreate).mount('#app');