0

I have two "identical" sandboxes, Sandbox A and Sandbox B

I trimmed down the files and code to a minimum, and copy-pasted the code from one to the other, including the package.json, so they should even have the same dependencies.

The only difference I can see at this point is where they were "Forked from". However, A is not displaying properly, while B does!

What is going on here?

ntg
  • 12,950
  • 7
  • 74
  • 95

1 Answers1

1

Sandbox B has the Material Icons font setup in index.html, while Sandbox A does not. Without the icons, the <v-icon> component renders the icon name instead of the icon.

demo of Sandbox A fixed

tony19
  • 125,647
  • 18
  • 229
  • 307