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.

37 lines
712 B

  1. <template>
  2. <action-menu
  3. :items="items"
  4. :text="$t('dataset.actions')"
  5. @create="$emit('create')"
  6. @upload="$emit('upload')"
  7. @download="$emit('download')"
  8. />
  9. </template>
  10. <script lang="ts">
  11. import Vue from 'vue'
  12. import ActionMenu from '~/components/utils/ActionMenu.vue'
  13. export default Vue.extend({
  14. components: {
  15. ActionMenu
  16. },
  17. computed: {
  18. items() {
  19. return [
  20. {
  21. title: this.$t('dataset.importDataset'),
  22. icon: 'mdi-upload',
  23. event: 'upload'
  24. },
  25. {
  26. title: this.$t('dataset.exportDataset'),
  27. icon: 'mdi-download',
  28. event: 'download'
  29. }
  30. ]
  31. }
  32. }
  33. })
  34. </script>