I have created a Vue.js application with Vuetify, however when I use the v-icon component the alternative text is displayed as opposed to the icon.
I have created my application following the quick start guide on the Vuetify website.
$  vue -V
@vue/cli 4.1.2
vue create my-app
cd my-app
$ vue add vuetify
I then simply add home to src/components/HelloWorld.vue.
<template>
  <v-container>
    <v-icon>home</v-icon>
  </v-container>
</template>
<script>
export default {
  name: 'HelloWorld',
  data: () => ({
  }),
};
</script>
When I run the application the word Home is displayed as opposed to the icon