Vxe UI 表单设计器、零代码平台

vxe-pc-ui Vxe UI 表单设计器、零代码表单设计器

安装 Vxe UI PC端组件库

官方文档

查看 githubgitee

javascript 复制代码
 // ...
 import VxeUI from 'vxe-pc-ui'
 import 'vxe-pc-ui/lib/style.css'
 // ...

 // ...
 createApp(App).use(VxeUI).mount('#app')
 // ...

使用

vxe-form-design 设计器组件

vxe-form-view 视图渲染组件

html 复制代码
<template>
  <div>
    <div class="row-wrapper">
      <vxe-form-design :widgets="formDesignWidgets" :height="800" />
    </div>
  </div>
</template>

<script setup>
import { ref } from 'vue'
const formDesignWidgets = ref([
  {
    title: '基础控件',
    children: [
      'input',
      'textarea',
      'select'
    ]
  },
  {
    title: '布局控件',
    children: [
      'row'
    ]
  }
])
</script>

设计器-效果预览:

相关推荐
King_9607251 个月前
vxe-table树形结构树的一键展开和折叠卡顿--已解决
前端·vue.js·vxe-table
大猩猩X2 个月前
Vxe UI vxe-table column 根据内容的长度来自适应列的宽度
前端·vue.js·vxe-ui
仰望.4 个月前
Vxe UI vxe-upload 上传组件,显示进度条的方法
vxe-table·vxe-ui·vxe-grid
一个大萝北8 个月前
使用ElementUI的el-tab+vxe-table表格+复选框选择
elementui·vxe-table
前端的南姐1 年前
vxe-table全选禁用并保留选中项
javascript·vxe-table