Blame view

src/components/card/card.vue 1.62 KB
15bae144   梁灏   add Card component
1
2
  <template>
      <div :class="classes">
743d0278   梁灏   update Card
3
4
          <div :class="headClasses" v-if="showHead"><slot name="title"></slot></div>
          <div :class="extraClasses" v-if="showExtra"><slot name="extra"></slot></div>
15bae144   梁灏   add Card component
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
          <div :class="bodyClasses"><slot></slot></div>
      </div>
  </template>
  <script>
      const prefixCls = 'ivu-card';
  
      export default {
          props: {
              bordered: {
                  type: Boolean,
                  default: true
              },
              disHover: {
                  type: Boolean,
                  default: false
              },
              shadow: {
                  type: Boolean,
                  default: false
              }
          },
          data () {
              return {
                  showHead: true,
                  showExtra: true
b0893113   jingsam   :art: add eslint
30
              };
15bae144   梁灏   add Card component
31
32
33
34
35
36
37
38
39
40
          },
          computed: {
              classes () {
                  return [
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-bordered`]: this.bordered && !this.shadow,
                          [`${prefixCls}-dis-hover`]: this.disHover || this.shadow,
                          [`${prefixCls}-shadow`]: this.shadow
                      }
b0893113   jingsam   :art: add eslint
41
                  ];
15bae144   梁灏   add Card component
42
43
44
45
46
47
48
49
50
51
52
              },
              headClasses () {
                  return `${prefixCls}-head`;
              },
              extraClasses () {
                  return `${prefixCls}-extra`;
              },
              bodyClasses () {
                  return `${prefixCls}-body`;
              }
          },
a8cb711c   huixisheng   Support Card
53
          mounted () {
743d0278   梁灏   update Card
54
55
              this.showHead = this.$slots.title !== undefined;
              this.showExtra = this.$slots.extra !== undefined;
15bae144   梁灏   add Card component
56
          }
b0893113   jingsam   :art: add eslint
57
58
      };
  </script>