mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
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'
|