Files
nocodb/packages/nc-gui/components/workspace/EmptyPlaceholder.vue
Mert E 89f0895de3 fix: experimental frontend optimizations (#8427)
* fix: get rid of barrel files

* chore: get rid of explicit imports

* fix: use explicit import for classes and enums

* fix: use explicit import for enum & class & aliases

* fix: build issues
2024-05-08 15:55:09 +05:30

38 lines
1.1 KiB
Vue

<script lang="ts" setup>
const props = defineProps<{
buttons?: boolean
}>()
const baseCreateDlg = ref(false)
const baseType = ref()
const openCreateProjectDlg = (type: NcProjectType) => {
baseType.value = type
baseCreateDlg.value = true
}
</script>
<template>
<div class="flex items-center justify-center mt-8">
<div class="flex flex-col gap-4 items-center text-gray-500">
<NcIconsInbox />
<div class="font-weight-medium">No Projects</div>
<template v-if="props.buttons">
<div class="text-xs">Create Base</div>
<div class="flex gap-2 justify mt-1">
<a-button class="flex-1 nc-btn" @click="openCreateProjectDlg(NcProjectType.DB)">
<div class="flex gap-2 items-center justify-center text-xs">
<GeneralProjectIcon :type="NcProjectType.DB" class="text-[#2824FB] text-lg" />
New Database Base
</div>
</a-button>
</div>
<WorkspaceCreateProjectDlg v-model="baseCreateDlg" :type="baseType" />
</template>
</div>
</div>
</template>
<style scoped></style>