mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
7 lines
481 B
TypeScript
7 lines
481 B
TypeScript
import { reactivePick } from '@vueuse/core'
|
|
import type { LinkProps } from '../types'
|
|
|
|
export function pickLinkProps(link: LinkProps & { ariaLabel?: string, title?: string }) {
|
|
return reactivePick(link, 'active', 'activeClass', 'ariaCurrentValue', 'ariaLabel', 'as', 'disabled', 'exact', 'exactActiveClass', 'exactHash', 'exactQuery', 'external', 'href', 'inactiveClass', 'noPrefetch', 'noRel', 'prefetch', 'prefetchedClass', 'rel', 'replace', 'target', 'to', 'type', 'title')
|
|
}
|