funkwhale/front/ui-docs/components/ui/nav.md

575 B

import Nav from "~/components/ui/Nav.vue"

Nav

This is just a list of links, styled like tabs.

You can add a badge or an icon to each tab link.

Hello
import { ref } from 'vue'

const nav = ref([{ title: 'Go up', to: '../' }, { title: 'Home', to: './', badge: "2" }])
<Nav v-model="nav" />