mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 16:26:57 +00:00
28 lines
636 B
Vue
28 lines
636 B
Vue
<script lang="ts" setup>
|
|
const supportedDocs = [
|
|
{
|
|
title: 'Integrations',
|
|
href: 'https://nocodb.com/docs/product-docs/integrations',
|
|
},
|
|
{
|
|
title: 'Create new connection',
|
|
href: 'https://nocodb.com/docs/product-docs/integrations/create-connection',
|
|
},
|
|
{
|
|
title: 'Add new Data source',
|
|
href: 'https://nocodb.com/docs/product-docs/data-sources/connect-to-data-source',
|
|
},
|
|
] as {
|
|
title: string
|
|
href: string
|
|
}[]
|
|
</script>
|
|
|
|
<template>
|
|
<NcModalSupportedDocs :docs="supportedDocs">
|
|
<template #title>
|
|
{{ $t('title.relevantDocumentation') }}
|
|
</template>
|
|
</NcModalSupportedDocs>
|
|
</template>
|