vue js convert string to html

<template>
  <div>
    <div v-html="htmlString"></div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      htmlString: "<p>This is a <strong>bold</strong> text.</p>"
    };
  }
};
</script>