mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-24 22:23:04 +01:00
21 lines
440 B
Vue
21 lines
440 B
Vue
|
<template>
|
||
|
<div class="exporter">
|
||
|
<div v-if="processing">
|
||
|
<i class="icon-spin4 animate-spin exporter-processing"></i>
|
||
|
<span>{{processingMessage}}</span>
|
||
|
</div>
|
||
|
<button class="btn btn-default" @click="process" v-else>{{exportButtonLabel}}</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script src="./exporter.js"></script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.exporter {
|
||
|
&-processing {
|
||
|
font-size: 1.5em;
|
||
|
margin: 0.25em;
|
||
|
}
|
||
|
}
|
||
|
</style>
|