TinyEditor 富文本

# TinyEditor 富文本

请输入你的内容

<template>
  <div>
    <div v-html="data" style="min-height: 100px"></div>
    <dk-tiny-editor v-model="data"></dk-tiny-editor>
  </div>
</template>
<script>
export default {
  data() {
    return {
      data: '请输入你的内容',
    }
  }
}
</script>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Expand Copy