mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
64 lines
1.1 KiB
Vue
64 lines
1.1 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 type="text" class="button">Operating</el-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-card>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from 'vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const currentDate = ref(new Date())
|
||
|
|
||
|
return {
|
||
|
currentDate,
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.time {
|
||
|
font-size: 13px;
|
||
|
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>
|