14 lines
271 B
Vue
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>
|
|
|
|
|
|
|