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.

27 lines
620 B

  1. <template>
  2. <v-card>
  3. <v-card-title>
  4. <document-upload-button />
  5. <document-deletion-button />
  6. </v-card-title>
  7. <document-list />
  8. </v-card>
  9. </template>
  10. <script>
  11. import DocumentList from '@/components/containers/DocumentList'
  12. import DocumentUploadButton from '@/components/containers/DocumentUploadButton'
  13. import DocumentDeletionButton from '@/components/containers/DocumentDeletionButton'
  14. export default {
  15. layout: 'project',
  16. components: {
  17. DocumentList,
  18. DocumentUploadButton,
  19. DocumentDeletionButton
  20. },
  21. validate({ params }) {
  22. return /^\d+$/.test(params.id)
  23. }
  24. }
  25. </script>