26 lines
419 B
Vue
26 lines
419 B
Vue
<template>
|
|
<div class="div flex justify-center w-[600px]">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { onMounted, } from 'vue';
|
|
import LoadingStore from '@/stores/loading.js';
|
|
export default {
|
|
props: {
|
|
|
|
},
|
|
setup(props) {
|
|
const loadingStore = LoadingStore();
|
|
|
|
onMounted(() => {
|
|
loadingStore.setIsLoading(false);
|
|
});
|
|
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script> |