mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
48a056b051
* docs: modify layout style * docs: modify nav padding * docs: update style * feat: update * docs: upadte * docs: update * docs: modify layout style * docs: update style * feat: update * docs: upadte * docs: update * docs: update * docs: update * docs: remove empty script * docs: update --------- Co-authored-by: kooriookami <bingshuanglingluo@163.com> Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
12 lines
312 B
Vue
12 lines
312 B
Vue
<template>
|
|
<el-card style="max-width: 480px">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span>Card name</span>
|
|
</div>
|
|
</template>
|
|
<p v-for="o in 4" :key="o" class="text item">{{ 'List item ' + o }}</p>
|
|
<template #footer>Footer content</template>
|
|
</el-card>
|
|
</template>
|