Skip to content

Commit

Permalink
Basic quill component
Browse files Browse the repository at this point in the history
  • Loading branch information
Brock Reece authored and Brock Reece committed Mar 13, 2016
1 parent e00ec67 commit c026cdd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/Quill.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<template>
<div></div>
</template>

<script>
export default {
data() {
return {
editor: {},
}
},
ready() {
this.editor = new Quill(this.$el, {
theme: 'snow',
})
}
}
</script>

0 comments on commit c026cdd

Please sign in to comment.