mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-25 10:20:38 +00:00
vue components refactoring
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user