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.
38 lines
962 B
38 lines
962 B
<script lang="ts" setup> |
|
const supportedDocs = [ |
|
{ |
|
title: 'Configure a PostgreSQL Integration', |
|
href: '', |
|
}, |
|
{ |
|
title: 'Getting started with Integrations', |
|
href: '', |
|
}, |
|
{ |
|
title: 'Troubleshoot database connection', |
|
href: '', |
|
}, |
|
] as { |
|
title: string |
|
href: string |
|
}[] |
|
</script> |
|
|
|
<template> |
|
<div> |
|
<div class="w-full flex flex-col gap-3"> |
|
<div class="text-sm text-gray-800 font-semibold">Supported Docs</div> |
|
|
|
<div> |
|
<div v-for="doc of supportedDocs" class="flex items-center gap-1"> |
|
<div class="h-7 w-7 flex items-center justify-center"> |
|
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-600"/> |
|
</div> |
|
<a :href="doc.href" target="_blank" rel="noopener noreferrer" class="!text-gray-700 text-sm !no-underline !hover:underline"> |
|
{{ doc.title }} |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|