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.

38 lines
755 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 { mdiUpload, mdiDownload } from '@mdi/js'
  13. import ActionMenu from '~/components/utils/ActionMenu.vue'
  14. export default Vue.extend({
  15. components: {
  16. ActionMenu
  17. },
  18. computed: {
  19. items() {
  20. return [
  21. {
  22. title: this.$t('dataset.importDataset'),
  23. icon: mdiUpload,
  24. event: 'upload'
  25. },
  26. {
  27. title: this.$t('dataset.exportDataset'),
  28. icon: mdiDownload,
  29. event: 'download'
  30. }
  31. ]
  32. }
  33. }
  34. })
  35. </script>