mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-16 02:11:48 +08:00
f84907ca3c
- add new component card and it's tests, docs
8 lines
278 B
TypeScript
8 lines
278 B
TypeScript
export default {
|
|
title: 'Card',
|
|
}
|
|
|
|
export const BasicCard = () :string => '<el-card header="I am the header">basic card</el-card>'
|
|
export const MinimalCard = (): string => '<el-card>minimal card with no header</el-card>'
|
|
export { default as ComplexCard } from './complex.vue'
|