EditorHtml

HTML编辑器。

属性

  • 属性说明:
参数名 类型 必填 默认值 说明
value string 空字符串 编辑器里面的内容
width string, number 编辑器的宽
height string, number 400 编辑器的高

使用方法

  • 代码示例:

    // 在script标签中按需引入
    import { EditorHtml } from '@jecloud/ui';
    export default {
      components: { EditorHtml },
      setup() {
          const value = ref("<p>dddddd</p>");
          return { value };
      }
    };
    // 在vue的template标签中
    <EditorHtml
      ref="editor"
      v-model:value="value"
      height="400"
      width="800"
    />
  • 事件脚本示例:

    const { EditorHtml } = JE.useUi();
    const { h, ref }= JE.useVue();
    const values = ref("&lt;p&gt;dddddd&lt;/p&gt;");
    return h(EditorHtml, {style: {width: "800px",height: "400px"},  value: values.value},);
最后编辑: 秦永莲  文档更新时间: 2024-08-08 13:51   作者:秦永莲