[Vuejs]-Vue.js component does not show up

1👍

The corresponding component should go in v-tab-item element. Here is an example from the tutorial:

<v-tabs
  color="cyan"
  dark
  slider-color="yellow"
>
  <v-tab ripple>
    Item 1
  </v-tab>
  <v-tab ripple>
    Item 2
  </v-tab>
  <v-tab-item>
    <v-card flat>
      <v-card-text>Contents for Item 1 go here</v-card-text>
    </v-card>
  </v-tab-item>
  <v-tab-item>
    <v-card flat>
      <v-card-text>Contents for Item 2 go here</v-card-text>
    </v-card>
  </v-tab-item>  
</v-tabs>

So, in your case:

<v-tab-item>
  <app-basketball-goals></app-basketball-goals>      
</v-tab-item>
👤Lana

Leave a comment