mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
12 lines
334 B
Vue
12 lines
334 B
Vue
|
<template>
|
||
|
<div class="flex absolute top-0 items-center justify-center w-full flex-grow h-full z-[3000]">
|
||
|
<div class="absolute top-0 left-0 w-full h-full bg-black opacity-10"></div>
|
||
|
<img src="/images/medium/loading.svg" alt="Loading" class="" />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'Loading'
|
||
|
};
|
||
|
</script>
|