view-ui-plus
Version:
A high quality UI components Library with Vue.js 3
60 lines (47 loc) • 850 B
TypeScript
import type { DefineComponent } from 'vue';
export declare const GlobalFooter: DefineComponent<{
/**
* 链接数据,各项内容见下表
*/
links?: any[];
/**
* 版权信息
*/
copyright?: string;
'v-slots'?: {
/**
* 自定义链接区域
*/
links?: () => any;
/**
* 自定义版权内容
*/
copyright?: () => any;
};
}>
export declare const Links: DefineComponent<{
/**
* 链接地址
*/
href?: string;
/**
* 是否新窗口打开
*/
'blank-target'?: boolean;
/**
* 指定 key
*/
key?: string;
/**
* 内容
*/
title?: string;
/**
* 图标 type
*/
icon?: string;
/**
* 自定义图标
*/
'custom-icon'?: string;
}>