mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 18:07:18 +00:00
19 lines
421 B
Vue
19 lines
421 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
height?: string
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
height: 'h-full',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full flex items-center justify-center bg-nc-bg-gray-extralight" :class="[height]">
|
|
<div class="text-center">
|
|
<a-spin size="large" />
|
|
<div class="mt-4 text-nc-content-gray-subtle2">Loading Monaco Editor...</div>
|
|
</div>
|
|
</div>
|
|
</template>
|