init project

This commit is contained in:
jilen 2020-02-03 16:58:48 +08:00
commit eb81760f47
679 changed files with 125497 additions and 0 deletions

30
dist/types/avatar.d.ts vendored Normal file
View file

@ -0,0 +1,30 @@
// Type definitions for iview 3.1.0
// Project: https://github.com/iview/iview
// Definitions by: yangdan
// Definitions: https://github.com/yangdan8/iview.git
import Vue, { VNode } from 'vue';
export declare interface Avatar extends Vue {
/**
* circlesquare
* @default circle
*/
shape?: 'circle' | 'square';
/**
* largesmalldefault
* @default default
*/
size?: 'large'|'small'|'default';
/**
*
*/
src?: string;
/**
* Icon
*/
icon?: string;
/**
*
*/
'custom-icon'?: string;
}