JSFiddle - React, Tailwind, and code Playground

by rigor789

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  <p contenteditable="true" @input="handleInput">{{ msg }}</p>
  
  <pre>{{ $data }}</pre>
</div>

JavaScript

new Vue({
	el: '#app',
  
  data: {
  	msg: 'hello'
  },
  
  methods: {
  	handleInput(e) {
    	this.msg = e.target.innerText
    }
  }
})