...

/

Rendering HTML

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:

  1. Using a directive called v-html
  <div v-html="userContent"></div>
  1. Using a render function
h('div', {
  domProps: {
     innerHTML: this.userContent 
  }
})
...