logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

exporter.vue (531B)


  1. <template>
  2. <div class="exporter">
  3. <div v-if="processing">
  4. <FAIcon
  5. icon="circle-notch"
  6. size="lg"
  7. spin
  8. />
  9. <span>{{ processingMessage || $t('exporter.processing') }}</span>
  10. </div>
  11. <button
  12. v-else
  13. class="btn button-default"
  14. @click="process"
  15. >
  16. {{ exportButtonLabel || $t('exporter.export') }}
  17. </button>
  18. </div>
  19. </template>
  20. <script src="./exporter.js"></script>
  21. <style lang="scss">
  22. .exporter {
  23. &-processing {
  24. margin: 0.25em;
  25. }
  26. }
  27. </style>