1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-09 19:20:04 +00:00
bramw_baserow/web-frontend/modules/database/components/dashboard/DatabaseDashboardSidebarLinks.vue

17 lines
341 B
Vue

<template>
<li>
<nuxt-link
:to="{ name: 'database-api-docs' }"
class="dashboard__sidebar-link"
>
<i class="fas fa-fw fa-book"></i>
{{ $t('databaseDashboardSidebarLinks.apiDocumentation') }}
</nuxt-link>
</li>
</template>
<script>
export default {
name: 'DatabaseDashboardSidebarLinks',
}
</script>