## 简易版富文本

### 导入使用
```code[javascript]
import seRtfColorEditor from "ss-universal-client-web/comp/form/su-rtf-color-editor";
```

### 基本用法

:::demo 
```html
<template>
    <div>
      <p>设置文本颜色</p>
      <su-rtf-color-editor :size="20" :limit="15" placeholder="设置文本颜色" v-model="initHtml.textColor" ref="vbEditTextColor"></su-rtf-color-editor>
      文本代码：
      <br>
      {{initHtml.textColor}}
    </div>
</template>
<script>
export default {
    components:{
        seRtfColorEditor
    },
    data() {
        return {
          initHtml:{
            textColor:"初始化文字",
            textArea:"你好"
          },
          html:{
              textColor:"",
              textArea:""
          }
        }
   }
 };
</script>
```
:::


### Attributes
| 参数      | 说明          | 类型      | 可选值                           | 默认值  |
|---------- |-------------- |---------- |--------------------------------  |-------- |
| v-model | 双向绑定 | string | — | — |
| placeholder | placeholder | string | — | 请输入文字 |
| size     | 文字大小           | string | — | 12 |
| limit     |  限制文本框长度          | string | — | — |
