mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
2 changed files with 45 additions and 28 deletions
@ -0,0 +1,18 @@ |
|||||||
|
<template> |
||||||
|
<template v-if="props.tabKey === 'list'"> |
||||||
|
<LazyAccountUserList /> |
||||||
|
</template> |
||||||
|
<template v-else-if="props.tabKey === 'settings'"> |
||||||
|
<LazyAccountSignupSettings /> |
||||||
|
</template> |
||||||
|
<template v-else-if="props.tabKey === 'password-reset'"> |
||||||
|
<LazyAccountResetPassword /> |
||||||
|
</template> |
||||||
|
</template> |
||||||
|
<script setup lang="ts"> |
||||||
|
import { defineProps } from '#imports' |
||||||
|
|
||||||
|
const props = defineProps<{ |
||||||
|
tabKey: string |
||||||
|
}>() |
||||||
|
</script> |
Loading…
Reference in new issue