Vue2 Editor Versions Save

A text editor using Vue.js and Quill

2.6.6

5 years ago

2.6.5

5 years ago

2.6.4

5 years ago

2.6.3

5 years ago

2.4.2

6 years ago

Minor Changes

  • Fix for not being able to upload same image twice: b793e99e36fbf9ec8b13eb65f2ef3be125b917c4

Patches

  • Updated docs to reflect new image uploader function: 7ee106c8f784558d751b43efe158f6513a72bb1c

2.4.0

6 years ago

Minor Changes

  • Fixes to readme: 0501d92fbf266f5ac62bc3202fadee7063e00d61
  • Fixed README multiple editor example: 24a63848b2ce93be51d44017430113d6152d33b4
  • Merge pull request #51 from nkonev/master: 9f6737739364efed13b0d3eed770e19c6737c52c
  • Update to new dev setup: c9ef86fd2326ece6f9e0ee07104b28e2e93a89c2
  • Updates with working editorOptions prop: 309d2968ce6e1e132f0da9b5c5808781a040c235
  • Update docs: 797ee6d6a87a99448a523adf73d5b147a8c60bff
  • Update with div fix: 2616d31190f8769da5c7147a3dfb49e22b3de5cc
  • Update with customModules prop: a678dde4cf23316ac8d92660c007dca79b295135

2.0.0

7 years ago

Vue2Editor 2.0

Vue2Editor was having some issues keeping the content in sync between parent and the editor. Therefore, it has been restructured to provide an easier process of using the editor with any project.

It now uses v-model, which should make it significantly easier to understand the flow of data and keep it in sync between the parent scope and the scope of the editor.

Example:

<template>
   <div id="app">
     <vue-editor v-model="content"></vue-editor>
   </div>
 </template>

 <script>
   import { VueEditor } from 'vue2-editor'

   components: {
     VueEditor
   },

   export default {
     data: function() {
       return {
         content: '<h1>Some initial content</h1>'  
       }
     }
   }
 </script>

Updates

Since v-model is being now being used, a lot of the features such as the live preview and the save button that were included are no longer part of Vue2Editor.

Note: The examples in the README have been updated to demonstrate how to achieve these same features as before with Vue2Editor 2.0

Special thanks to @Christilut for his merge proposal that helped me understand this more efficient and user-friendly approach!