1.1.6 • Published 6 years ago

rich-text-editor-vuetify v1.1.6

Weekly downloads
35
License
ISC
Repository
gitlab
Last release
6 years ago

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>
1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago