mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
11 changed files with 22 additions and 22 deletions
@ -0,0 +1,14 @@
|
||||
<script> |
||||
export default { |
||||
name: 'Index', |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<AccountUserManagement v-if="$route.params.page === 'users'" /> |
||||
<AccountToken v-else-if="$route.params.page === 'tokens'" /> |
||||
<AccountLicense v-else-if="$route.params.page === 'license'" /> |
||||
<span v-else></span> |
||||
</template> |
||||
|
||||
<style scoped></style> |
@ -1,14 +0,0 @@
|
||||
<script> |
||||
export default { |
||||
name: 'Index', |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<AdminUserManagement v-if="$route.params.page === 'users'" /> |
||||
<AdminToken v-else-if="$route.params.page === 'tokens'" /> |
||||
<AdminLicense v-else-if="$route.params.page === 'license'" /> |
||||
<span v-else></span> |
||||
</template> |
||||
|
||||
<style scoped></style> |
Loading…
Reference in new issue