I am using Vuetify, so this could be either a VueJS, Vuetify or even HTML question, but my component looks like this :
<v-list-tile
v-for="item in menuItem.items"
:key="item.type"
:style="`background: ${item.colour}`"
:html="item.type">
</v-list-tile>
Take the :key for example, what does the colon (:) before the word key mean? And where can I find what values I can use ?