mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
e97fe719c4
- Update button's type in examples per changes for button
56 lines
1.0 KiB
Vue
56 lines
1.0 KiB
Vue
<template>
|
|
<el-row>
|
|
<el-col
|
|
v-for="(o, index) in 2"
|
|
:key="o"
|
|
:span="8"
|
|
:offset="index > 0 ? 2 : 0"
|
|
>
|
|
<el-card :body-style="{ padding: '0px' }">
|
|
<img
|
|
src="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png"
|
|
class="image"
|
|
/>
|
|
<div style="padding: 14px">
|
|
<span>Yummy hamburger</span>
|
|
<div class="bottom">
|
|
<time class="time">{{ currentDate }}</time>
|
|
<el-button text class="button">Operating</el-button>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const currentDate = ref(new Date())
|
|
</script>
|
|
|
|
<style>
|
|
.time {
|
|
font-size: 12px;
|
|
color: #999;
|
|
}
|
|
|
|
.bottom {
|
|
margin-top: 13px;
|
|
line-height: 12px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
padding: 0;
|
|
min-height: auto;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
</style>
|