Skeleton: add skeleton component (#21038)

This commit is contained in:
好多大米
2021-06-01 17:23:13 +08:00
committed by GitHub
parent 29268a3d4a
commit df6965f875
22 changed files with 1754 additions and 2 deletions

7
types/skeleton-item.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { ElementUIComponent } from './component'
/** Skeleton Item Component */
export declare class ElSkeletonItem extends ElementUIComponent {
/** The current rendering skeleton type; default: text */
variant: 'p' | 'text' | 'h1' | 'h3' | 'text' | 'caption' | 'button' | 'image' | 'circle' | 'rect'
}