mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
20 lines
353 B
Vue
20 lines
353 B
Vue
<template>
|
|
<div class="page-tab">
|
|
<div id="loader" v-show="isLoading">
|
|
<Spinner />
|
|
</div>
|
|
<slot v-show="!isLoading" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Spinner from '../UI/Others/Spinner'
|
|
|
|
export default {
|
|
name: 'PageTab',
|
|
props: ['isLoading'],
|
|
components: {
|
|
Spinner,
|
|
},
|
|
}
|
|
</script> |