UNPKG

@bfehub/vuepress-theme-vmi

Version:

Vmi theme of VuePress

15 lines (14 loc) 328 B
import type { NavLink } from '../../shared/index.js'; declare module 'vue-router' { interface RouteMeta { title?: string; } } /** * Resolve NavLink props from string * * @example * - Input: '/README.md' * - Output: { text: 'Home', link: '/' } */ export declare const useNavLink: (item: string) => NavLink;