source-editors
v1.3.6
Published
ant-design-vue全家桶源码表单编辑器,支持内网、less、ts、antd图标、自定义格式化等
Downloads
127
Readme
表单源码编辑器
支持 ant-design-vue v4 less 全局汉化 内网环境等 必须全局引入 ant-design-vue
- main 文件中
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/reset.css'
app.use(Antd)
- 组件中使用编辑器
<script setup>
import { ref } from 'vue'
import { Cant, CantStore } from 'source-editors'
import Monaco from 'source-editors/monaco-editor'
const store = new CantStore({})
const cant = ref()
console.log(store)
const getFunc = () => {
console.log(cant.value.getEditor()) //获取编辑器
console.log(cant.value.getData()) //获取数据
}
</script>
<template>
<a-button @click="getFunc">测试</a-button>
<Cant :editor="Monaco" :store="store" ref="cant" />
</template>
- 组件中渲染表单
<template>
<Preview ref="pdom" :code="code"></Preview>
</template>
<script setup>
import {Preview} from "source-editors";
const test = async() => {
pdom.value?.getData()
const data = await pdom.value?.validate()
console.log(data)
pdom.value?.setData()
}
element-plus 编辑 source-editors-ep