vue-html5-editor
vue-html5-editor copied to clipboard
All buttons not working except undo button
I use Vue 2.2.6 on CentOS 7.3.
Here is my part of source code. The component can be displayed successfully. However, when I clicked the buttons no response except undo button. What's wrong? Any idea? Thanks.
<template>
<div>
<emailEditor :content="formData.emailContent"
:height="500"
:show-module-name="showModuleName"
@change="updateData" ref="emailEditor">
</emailEditor>
</div>
</template>
<script>
import VueHtml5Editor from 'vue-html5-editor'
const emailEditorOptions = {
showModuleName: true,
image: {
sizeLimit: 512 * 1024,
compress: true,
width: 500,
height: 500,
quality: 80
},
hiddenModules: ["info", "full-screen"]
};
const emailEditor = new VueHtml5Editor(emailEditorOptions);
export default {
components: {
emailEditor
},
}
</script>
#22 seems the same problem
did you know why failled some button?
@somama Haven't figured out why. I used another editor instead.
what editor did you use?
@somama vue-quill-editor.