UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

21 lines (14 loc) 513 B
import { VNode } from 'vue' import { BasicAttributes, SetPropsDefaults, VarComponent } from './varComponent' export declare const indexAnchorProps: Record<keyof IndexAnchorProps, any> export interface IndexAnchorProps extends BasicAttributes { index: string | number } export class IndexAnchor extends VarComponent { static setPropsDefaults: SetPropsDefaults<IndexAnchorProps> $props: IndexAnchorProps $slots: { default(): VNode[] } } export class _IndexAnchorComponent extends IndexAnchor {}