inital commit
This commit is contained in:
27
resources/js/components/App.vue
Normal file
27
resources/js/components/App.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div>
|
||||
<div id="spinner" v-show="$store.getters['auth/getLoaderStatus']">
|
||||
<div id="loading">
|
||||
<span class="timer-loader">Loading…</span>
|
||||
</div>
|
||||
</div>
|
||||
<router-view/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {onMounted} from 'vue';
|
||||
import {unsetStep} from "../helper";
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
onMounted(()=>{
|
||||
unsetStep();
|
||||
localStorage.clear();
|
||||
})
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user