0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

v-htmlの使い方

Posted at

Vueでリストを表示させたかった時に、htmlタグで改行を入れたかった

通常はマスタッシュ構文を使うが、それだとhtmlタグを入れてもただの文字列として認識されてしまう。そこで、v-html属性を用いる。

マスタッシュ構文

index.html
<span>{{ hoge.name }}</span>

v-html属性

index.html
<span v-html="hoge.name"></span>

備忘録として残させてください。アウトプットです。hogehoge

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?