富文本编辑器 wangeditor
作者:chrispy
<template><div><divid="editorElem"style="text-align:left"></div><buttonv-on:click="getContent">查看内容</button></div></template><script>importWangeditorfrom
<template>
<div>
<div id="editorElem" style="text-align:left"></div>
<button v-on:click="getContent">查看内容</button>
</div>
</template>
<script>
import Wangeditor from 'wangeditor'
export default {
name: 'editor',
data () {
return {
editorContent: ''
}
},
methods: {
getContent () {
alert(this.editorContent)
}
},
mounted () {
setTimeout(() => {
this.Editor.customConfig.onchange = (html) => {
this.editorContent = html
}
this.Editor.create()
this.Editor.txt.html(this.editorContent)
}, 0)
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
猜你喜欢
您可能感兴趣的文章:
- thinkphp array_shift() expects parameter 1 to be array, string given
- 一般在调用外部服务请求时候,有时由于配置问题无法访问,phph会报一个php_network_getaddresses: getaddrinfo failed: Name or servicenot known的错误
- python读文件指定行的数据
- SQL HAVING 子句
- Python操作MongoDB
- mysql group by count
- MySQL高性能优化规范、SQL处理、分区表、主主/从复制架构
- python 字符串中只取数字
- phpstorm撤销反撤销
- 如何保证缓存与数据库的双写一致性?
- php json_encode后插入mysql后成乱码
- elasticsearch聚合(sql group by)
- 获取鼠标坐标 弹窗位置
- 移动端css 初始化
- 浏览器禁用控制台修改内容1
- 加载视频播放
- 自定义浏览按钮 绑定本地路径
- 判断浏览器 是否是火狐 或 谷歌
- jquery 替换手机号中间几位 为星号