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.
19 lines
405 B
19 lines
405 B
7 months ago
|
<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>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|