scinote-web/app/javascript/vue/shared/loading.vue

12 lines
334 B
Vue
Raw Normal View History

<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>