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

All buttons not working except undo button

Open larryu opened this issue 8 years ago • 5 comments

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>

larryu avatar Apr 27 '17 23:04 larryu

#22 seems the same problem

larryu avatar Apr 28 '17 03:04 larryu

did you know why failled some button?

somama avatar Jun 26 '17 18:06 somama

@somama Haven't figured out why. I used another editor instead.

larryu avatar Jun 27 '17 03:06 larryu

what editor did you use?

somama avatar Jun 27 '17 15:06 somama

@somama vue-quill-editor.

larryu avatar Jun 28 '17 23:06 larryu