1
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?

More than 3 years have passed since last update.

Buefyのb-field labelで改行する

Last updated at Posted at 2020-04-05

buefyの下記のようなlabelを改行させて表示させたかったのですが、ただbrを書くだけでは改行できなかったので調べた。
https://buefy.org/documentation/field

<b-field label="line1<br>line2">
    <b-input value="Kevin Garvey"></b-input>
</b-field>

上記のb-fieldのlabel部分は下記のようになる

<label class="label">line1&lt;br&gt;line2</label>

label slotを使用する

label slotというものがあって、これを使うとlabelの文字をhtmlタグが使えるので、これを使ってbrを記載すれば改行ができた。

<b-field>
  <template slot="label">line1<br>line2</template>
  <b-input></b-input>
</b-field
1
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
1
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?