mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 20:36:59 +00:00
14 lines
393 B
Vue
14 lines
393 B
Vue
<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>
|