Blame view

src/components/card/card.vue 1.94 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>
fb8a7b3f   young   style(card): feat...
5
          <div :class="bodyClasses" :style="bodyStyles"><slot></slot></div>
15bae144   梁灏   add Card component
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
      </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
fb8a7b3f   young   style(card): feat...
24
25
26
27
              },
              padding: {
                  type: Boolean,
                  default: true
15bae144   梁灏   add Card component
28
29
30
31
32
33
              }
          },
          data () {
              return {
                  showHead: true,
                  showExtra: true
b0893113   jingsam   :art: add eslint
34
              };
15bae144   梁灏   add Card component
35
36
37
38
39
40
41
42
43
44
          },
          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
45
                  ];
15bae144   梁灏   add Card component
46
47
48
49
50
51
52
53
54
              },
              headClasses () {
                  return `${prefixCls}-head`;
              },
              extraClasses () {
                  return `${prefixCls}-extra`;
              },
              bodyClasses () {
                  return `${prefixCls}-body`;
fb8a7b3f   young   style(card): feat...
55
56
57
58
59
60
61
62
              },
              bodyStyles () {
                  if (!this.padding) {
                      return {
                          padding: 0
                      };
                  }
                  return '';
15bae144   梁灏   add Card component
63
64
              }
          },
a8cb711c   huixisheng   Support Card
65
          mounted () {
743d0278   梁灏   update Card
66
67
              this.showHead = this.$slots.title !== undefined;
              this.showExtra = this.$slots.extra !== undefined;
15bae144   梁灏   add Card component
68
          }
b0893113   jingsam   :art: add eslint
69
70
      };
  </script>