UNPKG

birdpaper-ui

Version:

一个通用的 vue3 UI组件库。A common vue3 UI component library.

71 lines (70 loc) 1.79 kB
import { PropType } from "vue"; import { LinkStatus } from "./types"; declare const _sfc_main: import("vue").DefineComponent<{ /** 链接地址 */ href: { type: StringConstructor; default: string; }; /** 链接状态 */ status: { type: PropType<LinkStatus>; default: string; }; /** 是否禁用 */ disabled: { type: BooleanConstructor; default: boolean; }; /** 是否加载状态 */ loading: { type: BooleanConstructor; default: boolean; }; /** 跳转链接方式 */ target: { type: StringConstructor; default: string; }; }, { name: string; clsName: import("vue").ComputedRef<string[]>; handleClick: (e: MouseEvent) => void; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { click: (ev: MouseEvent) => true; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ /** 链接地址 */ href: { type: StringConstructor; default: string; }; /** 链接状态 */ status: { type: PropType<LinkStatus>; default: string; }; /** 是否禁用 */ disabled: { type: BooleanConstructor; default: boolean; }; /** 是否加载状态 */ loading: { type: BooleanConstructor; default: boolean; }; /** 跳转链接方式 */ target: { type: StringConstructor; default: string; }; }>> & { onClick?: (ev: MouseEvent) => any; }, { status: LinkStatus; loading: boolean; disabled: boolean; href: string; target: string; }, {}>; export default _sfc_main;