[Vuejs]-In Vuetify 1.5 how do I get a v-menu look good in v-toolbar?

0👍

So the problem here is that you’re putting a button inside of a button. If you remove the v-btn around Training then it works the way it’s supposed to.

      <template v-slot:activator="{ on }">
        <v-btn flat v-on="on">
          <v-icon>expand_more</v-icon>Training
        </v-btn>
      </template>

Working codepen here: https://codepen.io/CodingDeer/pen/rNBjLOJ?editors=1010

Leave a comment