# HtCard 卡片

HtCard 自定义行组件,基于el-card实现;
Author andy.ten@tom.com & xukaixing@hotmail.com

# 示例

个人信息
其他信息
<template>
  <div>
    <ht-row :gutter="20">
      <ht-col :xs="24" :sm="24" :md="6" :lg="6" :xl="5">
        <ht-card style="height:320px;">
          <div slot="header" style="font-size: 14px;font-weight: 500;">
            <span>个人信息</span>
          </div>
        </ht-card>
      </ht-col>
      <ht-col :xs="24" :sm="24" :md="16" :lg="18" :xl="19" style="padding-right: 20px;">
        <ht-card style="height:320px;">
          <div slot="header" style="font-size: 14px;font-weight: 500;">
            <span>其他信息</span>
          </div>
        </ht-card>
      </ht-col>
    </ht-row>
  </div>
</template>
<script>
export default {
  data() {
    return {
    } 
  }
};
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Expand Copy

# API

# Card Attributes

参数 说明 类型 可选值 默认值

# 版本

  • v1.0.2