Как создать / обновить квилт блоты в Vue? - PullRequest
1 голос
/ 25 мая 2019

Я вижу документацию по добавлению квилт-блоттинга, но как новый программист, изучающий js с помощью vue, я не могу понять, где его разместить. Я хочу изменить имена классов, чтобы использовать css классы попутного ветра.

У меня установлен 'vue-quill-editor' через npm, и у меня есть редактор, работающий с кодом ниже.

<template>
  <section class="container">
    <no-ssr>
      <div
        v-quill:myQuillEditor="editorOption"
        class="quill-editor"
        :content="content"
        @change="onEditorChange($event)"
      ></div>
    </no-ssr>
  </section>
</template>

<script>
/*
Emits the html content to parent using editor-content
a parent example <quill @editor-content="form.content = $event" />
*/
export default {
  data() {
    return {
      content: "<p>Start typing post...</p>",
      editorOption: {
        // some quill options
        modules: {
          toolbar: [
            ["bold", "italic", "underline", "strike"],
            ["blockquote", "code-block"],
            [{ list: "ordered" }, { list: "bullet" }],
            [{ indent: "-1" }, { indent: "+1" }], // outdent/indent

            [{ size: ["small", false, "large", "huge"] }], // custom dropdown
            [{ header: [1, 2, 3, 4, 5, 6, false] }],

            [{ color: [] }, { background: [] }], // dropdown with defaults from theme
            [{ font: [] }],
            [{ align: [] }],

            ["clean"]
          ]
        }
      }
    };
  },
  methods: {
    onEditorChange({ editor, html, text }) {
      this.content = html;
      this.$emit("editor-content", this.content);
    }
  }
};
</script>

<style scoped>
.quill-editor {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
}
</style>
...