2👍
✅
The basic VueJS paradigm is to acts on data, not on html widget value.
insertTag
function should be something like:
insertTag: function() {
this.content = this.content + '<em>this is em</em>';
}
You can see working example here
Source:stackexchange.com