Vuejs Tinymce directive

by nachocab

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.min.js"></script>
<div id="app">
  <div v-initme="content"></div>
  <hr>
  <hr>
  {{ content }}
</div>

JavaScript

new Vue({
  el: '#app',
  data: {
    content: 'this is the inital content data'
  },
  directives: {
    initme: {
      bind(){
        console.log("1", this)
      },
      update(value) {
        console.log("2", this, value);
        this.el.innerText = value;
      }
    }
  }
})