mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
21 lines
353 B
Vue
21 lines
353 B
Vue
<template>
|
|
<div v-if="isVisible" class="w-full max-w-xl text-center">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AuthContent',
|
|
props: ['visible', 'name'],
|
|
data() {
|
|
return {
|
|
isVisible: false,
|
|
}
|
|
},
|
|
created() {
|
|
this.isVisible = this.visible
|
|
},
|
|
}
|
|
</script>
|