You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
625 B

  1. <template>
  2. <v-card>
  3. <v-card-title class="mb-2">
  4. <label-action-menu />
  5. <label-deletion-button class="ms-2" />
  6. </v-card-title>
  7. <label-list />
  8. </v-card>
  9. </template>
  10. <script>
  11. import LabelList from '@/components/containers/labels/LabelList'
  12. import LabelActionMenu from '@/components/containers/labels/LabelActionMenu'
  13. import LabelDeletionButton from '@/components/containers/labels/LabelDeletionButton'
  14. export default {
  15. layout: 'project',
  16. components: {
  17. LabelList,
  18. LabelActionMenu,
  19. LabelDeletionButton
  20. },
  21. validate({ params }) {
  22. return /^\d+$/.test(params.id)
  23. }
  24. }
  25. </script>