LoginSignup
7
4

More than 5 years have passed since last update.

Storybook (Vue) で Vuetify を使う際にアイコン(<v-icon>)が表示されない件

Last updated at Posted at 2019-01-17

現象

アイコンが表示されてほしいが、文字列だけになってしまう。

image

対策

フォントへの参照が無いのが原因の場合

.storybook/preview-head.html に以下を追加

.storybook/preview-head.html
<link
  href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons"
  rel="stylesheet"
/>

IEの場合

@font-face で不明のエラーが出るようです。

image

WebFontに対応してなさげなので、別途対応が必要です。

IEでWebフォントを表示させる | demodemo - Webデザイン/アプリ開発/フロトエンド開発のスキルデモ

IE11 not showing font awesome icons · Issue #8825 · FortAwesome/Font-Awesome

結果

無事、アイコンが表示されました。

image

リンク

Icon Component — Vuetify.js

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