sing in forms refactoring

This commit is contained in:
Čarodej
2022-01-18 11:18:33 +01:00
parent 59414a1e31
commit 148f5982a9
14 changed files with 658 additions and 423 deletions

View File

@@ -1,14 +1,16 @@
<template>
<div v-if="isVisible" class="auth-form">
<div v-if="isVisible" class="text-center w-full max-w-xl">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'AuthContent',
props: ['visible', 'name'],
props: [
'visible',
'name'
],
data() {
return {
isVisible: false,
@@ -18,4 +20,4 @@
this.isVisible = this.visible
}
}
</script>
</script>