I used code straight from vuematerial.io and it does not show an icon for either tag. It only shows the text. If I used your codeSandBox template the icons worked. If started my own sandbox and added the dependencies myself, didn't work.
So what are you guys doing to make these icons show up?
Browser: Chrome - Version 75.0.3770.142 (Official Build) (64-bit)
OS: Linux Fedora
vue: "^2.6.10",
vue-material: "^1.0.0-beta-11"
Expecting to see an icon for a tag called md-icon.
Seeing only text.
+1
Add this line in the styleof your App.vue file.
<style>
@import url("https://fonts.googleapis.com/css?family=Material+Icons");
...
Working Code: https://codesandbox.io/s/vue-template-68kyf
How could I miss that??? Jeez! Perhaps it shouldn't be listed as "optional" in the docs? Thank you for pointing this out.
Most helpful comment
Add this line in the
styleof yourApp.vuefile.Working Code: https://codesandbox.io/s/vue-template-68kyf