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.
14 lines
393 B
14 lines
393 B
9 months ago
|
<script lang="ts" setup>
|
||
|
import { openLink } from '#imports'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div
|
||
|
class="flex items-center gap-3 cursor-pointer text-gray-700 dark:text-slate-300"
|
||
|
@click="openLink('https://github.com/nocodb/nocodb')"
|
||
|
>
|
||
|
<img src="~assets/img/brand/nocodb-logo.svg" alt="NocoDB" class="flex-none w-6 h-6" />
|
||
|
<div class="text-sm">NocoDB Forms</div>
|
||
|
</div>
|
||
|
</template>
|