Element Plus Card基础用法:修订间差异
跳到导航
跳到搜索
(创建页面,内容为“<syntaxhighlight lang="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> </syntaxhighlight>”) |
无编辑摘要 |
||
第1行: | 第1行: | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="html"> | ||
<template> | <template> | ||
<el-card style="max-width: 480px"> | <el-card style="max-width: 480px"> |
2024年4月12日 (五) 18:40的最新版本
<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>