1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-06 01:40:10 +00:00
bramw_baserow/web-frontend/modules/core/components/BaserowLogo.vue
2022-09-26 08:56:26 +00:00

19 lines
401 B
Vue

<template>
<a
href="https://baserow.io"
target="_blank"
title="Baserow - open source no-code database tool and Airtable alternative"
>
<img
height="14"
src="@baserow/modules/core/static/img/logo.svg"
alt="Baserow - open source no-code database tool and Airtable alternative"
/>
</a>
</template>
<script>
export default {
name: 'BaserowLogo',
}
</script>