UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

10 lines (9 loc) 294 B
import type { Ref } from 'vue'; export declare function useLinkable(props: { to: Ref<string | object | undefined>; href: Ref<string | undefined>; tag: Ref<string>; }): { tag: import("vue").ComputedRef<any>; isLink: import("vue").ComputedRef<string | object | undefined>; };