This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<template>
<NuxtLayout name="auth" :aside="asides[step]" :steps="3">
<AuthPhone v-if="step == 0" />
<AuthCode v-else-if="step == 1" />
<AuthPassword v-else-if="step == 2" />
<AuthInformation v-else-if="step == 3" />
</NuxtLayout>
</template>
<script setup>
const route = useRoute()
const { step = 0 } = route.query
const asides = reactive(['EnterPhoneNumber', 'EnterOTPCode', 'ChoosePassword'])
</script>
<style lang="scss" scoped>
</style>