rich-text-editor-vuetify

1.1.6 • Public • Published

Rich text editor for Vuetify 2.0

Installing

npm i -S rich-text-editor-vuetify

Getting started

// in main.js / index.js
 
import Vue from 'vue'
import RichTextEditor from 'rich-text-editor-vuetify'
 
[...]
 
Vue.use(RichTextEditor)

Example

<template>
  <rich-text-editor @update="onUpdate"/>
</template>
 
<script>
export default {
  name: 'RichTextEditPanel',
  data () {
    return {
      text: ''
    }
  },
  methods: {
    onUpdate (text) {
      this.text = text
    }
  }
}
</script>

Package Sidebar

Install

npm i rich-text-editor-vuetify

Weekly Downloads

25

Version

1.1.6

License

ISC

Unpacked Size

14.4 kB

Total Files

21

Last publish

Collaborators

  • giildo