Labels.vue 311 B

1234567891011121314
  1. <template>
  2. <v-container fluid>
  3. <v-row>
  4. <v-col :cols=10>
  5. <h1>Labels</h1>
  6. </v-col>
  7. <v-col :cols=2 >
  8. <v-btn :to = "{ name: 'projects' }" block color="error">
  9. <v-icon>mdi-reply</v-icon> Back
  10. </v-btn>
  11. </v-col>
  12. </v-row>
  13. </v-container>
  14. </template>