码迷,mamicode.com
首页 > 其他好文 > 详细

element card源码

时间:2019-05-24 10:45:49      阅读:631      评论:0      收藏:0      [点我收藏+]

标签:ever   dash   add   object   body   lca   name   hover   export   

<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源码

标签:ever   dash   add   object   body   lca   name   hover   export   

原文地址:https://www.cnblogs.com/wsk1576025821/p/10916386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!