mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 02:57:06 +00:00
20 lines
535 B
Vue
20 lines
535 B
Vue
<template>
|
|
<div class="flex flex-col">
|
|
<NcPageHeader>
|
|
<template #icon>
|
|
<GeneralIcon icon="appStore" class="flex-none text-[20px] h-5 w-5" />
|
|
</template>
|
|
<template #title>
|
|
<span data-rec="true">
|
|
{{ $t('title.appStore') }}
|
|
</span>
|
|
</template>
|
|
</NcPageHeader>
|
|
<div class="nc-content-max-w p-6 h-[calc(100vh_-_100px)] flex flex-col gap-6 overflow-auto nc-scrollbar-thin">
|
|
<div>
|
|
<DashboardSettingsAppStore />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|