feat: 解决表单设计器数据缓存问题

This commit is contained in:
tony
2022-12-17 10:43:11 +08:00
parent 2f5fed6f44
commit 683528d5dd
14 changed files with 343 additions and 250 deletions

View File

@@ -1,6 +1,6 @@
<script>
import { deepClone } from '@/utils/index'
import render from '@/components/render/render.js'
import { deepClone } from '../../utils/index'
import render from '../render/render.js'
const ruleTrigger = {
'el-input': 'blur',

View File

@@ -1,38 +0,0 @@
<template>
<div>
<Tinymce v-model="defaultValue" :height="300" placeholder="在这里输入文字" />
</div>
</template>
<script>
import Tinymce from '../index.vue'
export default {
components: {
Tinymce
},
props: {
},
data() {
return {
defaultValue: '<p>配置文档参阅http://tinymce.ax-z.cn</p>'
}
},
computed: {
},
watch: {
},
created() {
},
mounted() {
},
methods: {
}
}
</script>