yubo
2026-04-11 11ab4edc4f3c59643ffbd73ef2bf05bbb3e793aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
  <div class="app-container">
    <aside>
      <span>
        <el-link type="primary"><a href="https://github.com/tinymce/tinymce-vue" target="_blank">TinyMCE富文本编辑器官方仓库</a></el-link></span>
    </aside>
    <div>
      <tinymce v-model="content" :height="300" />
    </div>
    <div class="editor-content" v-html="content" />
  </div>
</template>
 
<script>
import Tinymce from '@/components/Tinymce'
 
export default {
  name: 'TinymceDemo',
  components: { Tinymce },
  data() {
    return {
      content: ''
    }
  }
}
</script>
<style lang="scss" scoped>
  .editor-content{
    margin-top: 20px;
  }
</style>