inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

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