Rendering HTML
Learn a better way to render HTML in Vue applications.
We'll cover the following...
Rendering ways
Vue provides a few ways to render string as HTML:
- Using a directive called 
v-html 
  <div v-html="userContent"></div>
- Using a render function
 
h('div', {
  domProps: {
     innerHTML: this.userContent 
  }
})
 ... Ask