富文本编辑器是基于tinymce封装,集成了系统内部的图片上传、视频上传组件 >[info] 显示效果 ![](https://img.kancloud.cn/93/d1/93d173de84c189248f04ce989c6653b1_894x373.png) >[info] 示例代码 ``` <template> <tinyEditor :content.sync="content"></tinyEditor> </template> <script> import tinyEditor from '@/components/tiny_editor' export default { components: { tinyEditor, }, computed: {}, data () { return { content: '邮箱:nzb@yeah.net', }; } }; </script> ``` >[info] 属性说明 ``` content:内容 ```