mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 19:36:37 +00:00
17 lines
369 B
Vue
17 lines
369 B
Vue
<script setup lang="ts">
|
|
interface Prop {
|
|
extensionId: string
|
|
}
|
|
|
|
const { extensionId } = defineProps<Prop>()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtErrorBoundary>
|
|
<ExtensionsExtension :extension-id="extensionId" />
|
|
<template #error="{ error }">
|
|
<ExtensionsExtension :extension-id="extensionId" :error="error" />
|
|
</template>
|
|
</NuxtErrorBoundary>
|
|
</template>
|