v-editor
My polished Vue component.
Install
yarn add v-editorCDN: UNPKG | jsDelivr (available as window.VEditor)
Usage
<template>
<v-editor v-model="content"></v-editor>
</template>
<script>
import VEditor from 'v-editor'
export default {
components: {
VEditor
},
data() {
return {
content: '<h1>Content for editor</h1>'
}
}
}
</script>License
MIT © David Royer