mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-07 09:13:52 +09:00
v12 (#5712)
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
This commit is contained in:
30
src/client/components/loading.vue
Normal file
30
src/client/components/loading.vue
Normal file
@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div class="yxspomdl">
|
||||
<fa :icon="faSpinner" pulse fixed-width class="icon"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
|
||||
|
||||
export default Vue.extend({
|
||||
data() {
|
||||
return {
|
||||
faSpinner
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.yxspomdl {
|
||||
padding: 32px;
|
||||
text-align: center;
|
||||
|
||||
> .icon {
|
||||
font-size: 32px;
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user