Skip to content

editor-wang

wang 富文本编辑器。

参数说明类型可选值默认值
modelValue绑定值string
mode类型default / simpledefault
height高度string / number500
disabled是否禁用booleanfalse
preview是否预览模式booleanfalse
isSpace是否使用文件空间booleanfalse

示例

html
<template>
  <cl-editor-wang v-model="value" />
</template>

<script lang="ts" setup>
  import { ref } from "vue";

  const value = ref(
    '<p><span style="font-size: 22px;"><em>富文本编</em></span><span style="color: rgb(216, 68, 147); font-size: 22px;"><em>辑器</em></span></p>'
  );
</script>