Search code examples
vue.jscodesandbox

codesandbox.io / vuetify: two "identical" projects behaving differently


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?


Solution

  • 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