chore(VerticalNavigation): extend types from NuxtLinkProps

This commit is contained in:
Benjamin Canac
2023-07-19 12:57:11 +02:00
parent 1171724791
commit b28ae68945

View File

@@ -1,9 +1,7 @@
import type { RouteLocationRaw } from 'vue-router'
import type { NuxtLinkProps } from '#app'
import type { Avatar } from './avatar'
export interface VerticalNavigationLink {
to?: string | RouteLocationRaw
exact?: boolean
export interface VerticalNavigationLink extends NuxtLinkProps {
label: string
icon?: string
iconClass?: string