vuejs对于contenteditable="true"属性有支持吗?如何对div进行v-model?
<div id='mount' contenteditable="true"
class="form-control edit-div"
v-model="html" >
{{{ html }}}
</div>
new Vue({
el: '#mount',
data: {
html:"<img src='http://pic.510wifi.com/2016-03/4ecdf0cbae38672b533d322edb3ef17b.jpg' />",
},
ready: function () {
this.$watch('html', function (newVal, oldVal) {
alert(newVal)
});
})
http://vuejs.org.cn/guide/custom-directi...