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

<template>
<v-card>
<v-card-title class="mb-2">
<label-action-menu />
<label-deletion-button class="ms-2" />
</v-card-title>
<label-list />
</v-card>
</template>
<script>
import LabelList from '@/components/containers/labels/LabelList'
import LabelActionMenu from '@/components/containers/labels/LabelActionMenu'
import LabelDeletionButton from '@/components/containers/labels/LabelDeletionButton'
export default {
layout: 'project',
components: {
LabelList,
LabelActionMenu,
LabelDeletionButton
},
validate({ params }) {
return /^\d+$/.test(params.id)
}
}
</script>