mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
editing with shared items in public
This commit is contained in:
26
resources/js/components/Auth/AuthContent.vue
Normal file
26
resources/js/components/Auth/AuthContent.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="auth-form" v-if="isVisible">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'AuthContent',
|
||||
props: ['visible', 'name'],
|
||||
data() {
|
||||
return {
|
||||
isVisible: false,
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.isVisible = this.visible
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user