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?

More than 3 years have passed since last update.

Buefy placeholderが効かない件

Last updated at Posted at 2021-06-24

概要

SS_ 2021-06-24 21.44.16.png

上記のようなデザインを実装するために
Buefy公式ドキュメントを参考に実装。(コピペ)

pug
b-datepicker(
  ref="datepicker"
  expanded
  placeholder="Select a date"
)

しかし、実際に表示されたのは以下のデザインで、
公式ドキュメントのような実装にならない。

SS_ 2021-06-24 21.45.45.png

何よりplaceholderがが効いていないのが一番気になる。
なぜか年/月/日と表示されている。
(なぜか右端にカレンダーアイコンも表示されている)

期待する動きはplaceholder="Select a date"と設定しているのでSelect a dateが表示されていて欲しい。

解決策

pug
b-datepicker(
  ref="datepicker"
  expanded
  placeholder="Select a date"
  :mobile-native="false"
)

上記のコードのように :mobile-native="false"を追加すると期待するデザインになりました

SS_ 2021-06-24 21.53.36.png

参考文献

https://github.com/buefy/buefy/issues/1183
https://github.com/buefy/buefy/issues/889

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?