akkoma-fe/src/components/exporter/exporter.vue

27 lines
444 B
Vue
Raw Normal View History

2019-03-30 12:03:40 +00:00
<template>
<div class="exporter">
<div v-if="processing">
<FAIcon icon="circle-notch" size="lg" spin />
2019-07-05 07:17:44 +00:00
<span>{{ processingMessage }}</span>
2019-03-30 12:03:40 +00:00
</div>
2019-07-05 07:17:44 +00:00
<button
v-else
class="btn btn-default"
@click="process"
>
{{ exportButtonLabel }}
</button>
2019-03-30 12:03:40 +00:00
</div>
</template>
<script src="./exporter.js"></script>
<style lang="scss">
.exporter {
&-processing {
margin: 0.25em;
}
}
</style>