mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
4 changed files with 30 additions and 4 deletions
@ -0,0 +1,18 @@
|
||||
<script lang="ts" setup> |
||||
import AppStore from '~/components/dashboard/settings/AppStore.vue' |
||||
import { Role } from '~/lib' |
||||
|
||||
definePageMeta({ |
||||
requiresAuth: true, |
||||
allowedRoles: [Role.Super], |
||||
}) |
||||
</script> |
||||
|
||||
<template> |
||||
<div class="p-4 h-full overflow-auto"> |
||||
<h1>{{ $t('label.appStore') }}</h1> |
||||
<AppStore /> |
||||
</div> |
||||
</template> |
||||
|
||||
<style scoped></style> |
Loading…
Reference in new issue