Missing a default scoped slot
问题 I am looking at the tutorials on vues page for adding tooltips. https://vuetifyjs.com/en/components/tooltips It seems to work fine for an individual button. However, it does not work within a v-item. I get a console message saying '[Vuetify] v-item is missing a default scopedSlot' <v-item v-for="foo in bars" :key=`${foo}`> <v-tooltip> <v-btn slot="activator"> <v-icon>some-icon</v-icon> </v-btn> <span>Some tooltip text</span> </v-tooltip> </v-item> I've tried adding things to the above code