EditorDraw

画图编辑器。

属性

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

使用方法

  • 代码示例:

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

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