You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
309 B
24 lines
309 B
<template>
|
|
<div>
|
|
<md>
|
|
## 基本
|
|
</md>
|
|
<Card title="Card title">
|
|
<a href="#" slot="extra">More</a>
|
|
<p>Card content</p>
|
|
<p>Card content</p>
|
|
<p>Card content</p>
|
|
</Card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import '../style'
|
|
import { Card } from 'antd'
|
|
export default {
|
|
components: {
|
|
Card,
|
|
},
|
|
}
|
|
</script>
|