mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
19 lines
259 B
Vue
19 lines
259 B
Vue
<template>
|
|
<el-card class="box-card">
|
|
<div v-for="o in 4" :key="o" class="text item">{{ 'List item ' + o }}</div>
|
|
</el-card>
|
|
</template>
|
|
<style scoped>
|
|
.text {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.item {
|
|
padding: 18px 0;
|
|
}
|
|
|
|
.box-card {
|
|
width: 480px;
|
|
}
|
|
</style>
|