This commit is contained in:
lb
2024-03-27 16:34:55 +08:00
parent e0fac4556d
commit 1c301215d1
82 changed files with 0 additions and 13261 deletions

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>