LoginSignup
9
5

More than 3 years have passed since last update.

【Vue.js】v-htmlとは

Posted at

vueを基礎から学び直しています。

v-htmlについて

<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>

<div id="app">
  <div>{{ html }}</div>
  <div v-html="html"></div>
</div>
new Vue({
    el: '#app',
  data: {
    html: '<h2>h2です<h2>',
  }
})

表示結果

スクリーンショット 2021-04-06 9.35.06.png

v-htmlを使うと、htmlのタグが適用されてh2の表示となる。
逆に、二重中括弧を使って{{ html }}とすると、<h2>h2です<h2>という表示になる。

9
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
5