vue-html5-editor icon indicating copy to clipboard operation
vue-html5-editor copied to clipboard

An html5 wysiwyg editor for vue

Results 100 vue-html5-editor issues
Sort by recently updated
recently updated
newest added

` data () { return { content: '' } }` 当给输入框赋值后,content的值一直是空,并没有变化,是怎么回事呢?

希望可以配置上传的图片地址呀~

点击上传图片,报 URL.createObjectURL 错,请问大神这是什么情况呀

用鼠标或者键盘复制一段文本粘贴到编辑器中不做其他操作,此时没有触发change事件,传递的数据contet为空 希望把粘贴复制事件加进去,谢谢大神。

新版本Vue使用:content.sync来进行双向绑定必须在 组件下watch加入一下代码 ``` content(val) { const content = this.$refs.content.innerHTML if (val !== content) { this.$refs.content.innerHTML = val this.$emit('update:content', val) } } ```

一旦设为absolute,toolbar都飘到输入框上了,偶尔还挡住字了

(46): src/util/mixin.js 'default' is not exported by node_modules\[email protected]@lrz\dist\lrz.all.bundle.js (imported by src\modules\image\dashboard.js). For help fixing this error see https://github.com/rollup/rollup/wiki/Troubleshooting#name-is-not-exported-by-module Error: 'default' is not exported by node_modules\[email protected]@lrz\dist\lrz.all.bundle.js (imported by src\modules\image\dashboard.js). For help...

if (Array.isArray(options.visibleModules)) { modules = (function () { var arr = []; modules.forEach(function (module) { if (options.visibleModules.includes(module.name)) { } }); return arr })(); 如果以module原来的顺序做基准比较的话,返回回来的顺序是不会变的 我是临时修正成这样 options.visibleModules.forEach(function (name) { modules.forEach(function (module)...

How to handle this error when using this package with nuxt. Any idea?