mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
445 B
20 lines
445 B
2 years ago
|
<script lang="ts" setup>
|
||
1 year ago
|
import { Role, definePageMeta } from '#imports'
|
||
2 years ago
|
|
||
|
definePageMeta({
|
||
|
requiresAuth: true,
|
||
|
allowedRoles: [Role.Super],
|
||
2 years ago
|
title: 'title.appStore',
|
||
2 years ago
|
})
|
||
2 years ago
|
|
||
|
useSidebar('nc-left-sidebar', { hasSidebar: false })
|
||
2 years ago
|
</script>
|
||
|
|
||
|
<template>
|
||
2 years ago
|
<div class="p-10 h-full overflow-auto">
|
||
2 years ago
|
<h1 class="text-3xl text-center mb-11 nc-app-store-title">{{ $t('title.appStore') }}</h1>
|
||
2 years ago
|
|
||
|
<LazyDashboardSettingsAppStore />
|
||
2 years ago
|
</div>
|
||
|
</template>
|