mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:07:06 +00:00
19 lines
379 B
Vue
19 lines
379 B
Vue
<template>
|
|
<transition name="fade">
|
|
<div v-if="floatSpinnerLoad > 0" class="common-float-spinner">
|
|
<Loading class="common-float-circular"></Loading>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from "vuex";
|
|
|
|
export default {
|
|
name: 'FloatSpinner',
|
|
computed: {
|
|
...mapState(['floatSpinnerLoad'])
|
|
}
|
|
}
|
|
</script>
|