Icons show the text of the icons, not the icon itself.
See original GitHub issueSteps to reproduce
- Install a webpack base project using vue-cli
- Install Vue, include the JS/CSS into the Vue App in main.js.
- At this point, the other components work.
- Attempting to use
<v-icon>home</v-icon>
shows a large “home” in text instead of the icon
Versions
Vue: 2.4.4
Vuetify: 0.16.3
OS: OSx Sierra 10.12.6
Chrome, Firefox (including nightly), Safari
What is expected ?
I expect to see icons.
What is actually happening ?
I see the text instead. “home” instead of an icon of a home
Reproduction Link
I can’t reproduce from the given fiddle.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:27 (7 by maintainers)
Top Results From Across the Web
vue.js - vuetify icon not showing - Stack Overflow
I just did a new Vue-cli project, following the Vuetify quick start and copied one of their templates and icons did not show...
Read more >Desktop icons missing, Only text showing - Microsoft Community
I have Three user accounts in my PC and this issue affects two of them My Desktop icons have disappeared and i can...
Read more >Icon Fonts: Showing Icons without their Associated Text
How to only show an icon when using icon fonts, pseudo-elements, and image replacement techniques.
Read more >How to stop Windows 11 and 10 from using thumbnail preview ...
From now on, Windows should show the regular folder icons rather than contents ... Email or SMS text messaging are NOT secure for...
Read more >Icon | Angular Material
This directive supports both icon fonts and SVG icons, but not ... show icons by using ligatures, for example by rendering the text...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
with Vue CLI 3 we has no index.html in the src folder so alternatively you can
npm install --save material-design-icons-iconfont
and import it in the main.js fileimport 'material-design-icons-iconfont/dist/material-design-icons.css'
Including link href=‘https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons’ rel=“stylesheet” type=“text/css”
in my index file solved my problem