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.

26 lines
453 B

  1. <template>
  2. <v-card>
  3. <v-card-title>
  4. Export
  5. </v-card-title>
  6. <v-card-text>
  7. <a :href="url" download="docs.json">Download</a>
  8. </v-card-text>
  9. </v-card>
  10. </template>
  11. <script>
  12. export default {
  13. layout: 'project',
  14. computed: {
  15. url() {
  16. const projectId = this.$route.params.id
  17. return `/v1/projects/${projectId}/docs/download`
  18. }
  19. },
  20. validate({ params }) {
  21. return /^\d+$/.test(params.id)
  22. }
  23. }
  24. </script>