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.
33 lines
447 B
33 lines
447 B
<template>
|
|
<div>
|
|
<md>
|
|
## 简洁卡片
|
|
</md>
|
|
<Card
|
|
hoverable
|
|
style="width: 240px"
|
|
>
|
|
<img
|
|
alt="example"
|
|
src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png"
|
|
slot="cover"
|
|
/>
|
|
<Meta
|
|
title="Europe Street beat"
|
|
description="www.instagram.com"
|
|
/>
|
|
</Card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import '../style'
|
|
import { Card } from 'antd'
|
|
export default {
|
|
components: {
|
|
Card,
|
|
Meta: Card.Meta,
|
|
},
|
|
}
|
|
</script>
|