Files
2026-06-29 13:00:18 +06:00

14 lines
271 B
Vue

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