element card源码

Posted wsk1576025821

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element card源码相关的知识,希望对你有一定的参考价值。

<template>
  <div class="el-card" :class="shadow ? ‘is-‘ + shadow + ‘-shadow‘ : ‘is-always-shadow‘">
    <div class="el-card__header" v-if="$slots.header || header">
      <slot name="header">{{ header }}</slot>
    </div>
    <div class="el-card__body" :style="bodyStyle">
      <slot></slot>
    </div>
  </div>
</template>

<script>
  export default {
    name: ElCard,
    props: {
      header: {},
      bodyStyle: {},
      shadow: {
        type: String
      }
    }
  };
</script>

Attributes

参数说明类型可选值默认值
header 设置 header,也可以通过 slot#header 传入 DOM string
body-style 设置 body 的样式 object { padding: ‘20px‘ }
shadow 设置阴影显示时机 string always / hover / never always

以上是关于element card源码的主要内容,如果未能解决你的问题,请参考以下文章

Selenium Xpath元素无法定位 NoSuchElementException: Message: no such element: Unable to locate element(代码片段

修改element-ui el-card卡片修改样式不起作用问题

js代码片段: utils/lcoalStorage/cookie

我可以在不使用 Stripe Card Element 的情况下使用 Stripe api

TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段

前端element-ui组件库el-card卡片hover效果与点击事件(点击无效用@click.native=““)解决