mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-09 19:20:04 +00:00
17 lines
341 B
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>
|