Skip to content
Discussion options

You must be logged in to vote

Thanks for reporting the issue. I think that example was updated from vue2 to vue3 without realizing the vuetify3 api has slightly changed.

I've updated the code in the repo with a better syntax. Also in order to figure out what was wrong, I looked at the Vuetify example here which was showing the following template example.

   <v-menu>
      <template v-slot:activator="{ props }">
        <v-btn
          color="primary"
          v-bind="props"
        >
          Activator slot
        </v-btn>
      </template>
      <v-list>
        <v-list-item
          v-for="(item, index) in items"
          :key="index"
          :value="index"
        >
          <v-list-item-title>{{ item.titl…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by SebastienRietteMTO
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants