Blame view

src/components/button/button.vue 2.39 KB
7fa943eb   梁灏   init
1
  <template>
99d0429e   梁灏   update Button & T...
2
      <button :type="htmlType" :class="classes" :disabled="disabled" @click="handleClick">
9817ce99   jingsam   :hammer: Use Icon...
3
4
          <Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon>
          <Icon :type="icon" v-if="icon && !loading"></Icon>
d47ea998   梁灏   support Button an...
5
          <span v-if="showSlot" ref="slot"><slot></slot></span>
7fa943eb   梁灏   init
6
7
8
9
10
11
12
      </button>
  </template>
  <script>
      import Icon from '../icon';
      import { oneOf } from '../../utils/assist';
  
      const prefixCls = 'ivu-btn';
7fa943eb   梁灏   init
13
14
  
      export default {
06322514   梁灏   support Radio
15
          name: 'Button',
7fa943eb   梁灏   init
16
17
18
19
          components: { Icon },
          props: {
              type: {
                  validator (value) {
6c912a7b   梁灏   update Button
20
                      return oneOf(value, ['primary', 'ghost', 'dashed', 'text', 'info', 'success', 'warning', 'error', 'default']);
7fa943eb   梁灏   init
21
22
23
24
25
26
27
28
29
                  }
              },
              shape: {
                  validator (value) {
                      return oneOf(value, ['circle', 'circle-outline']);
                  }
              },
              size: {
                  validator (value) {
77f1cc2e   梁灏   Checkbox add size...
30
                      return oneOf(value, ['small', 'large', 'default']);
7fa943eb   梁灏   init
31
32
33
34
35
36
37
38
39
40
                  }
              },
              loading: Boolean,
              disabled: Boolean,
              htmlType: {
                  default: 'button',
                  validator (value) {
                      return oneOf(value, ['button', 'submit', 'reset']);
                  }
              },
71d9fc8e   梁灏   Button add new pr...
41
42
43
44
45
              icon: String,
              long: {
                  type: Boolean,
                  default: false
              }
7fa943eb   梁灏   init
46
          },
698e3b61   梁灏   iButton add some ...
47
48
49
          data () {
              return {
                  showSlot: true
b0893113   jingsam   :art: add eslint
50
              };
698e3b61   梁灏   iButton add some ...
51
          },
7fa943eb   梁灏   init
52
53
54
55
56
57
          computed: {
              classes () {
                  return [
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-${this.type}`]: !!this.type,
71d9fc8e   梁灏   Button add new pr...
58
                          [`${prefixCls}-long`]: this.long,
7fa943eb   梁灏   init
59
60
                          [`${prefixCls}-${this.shape}`]: !!this.shape,
                          [`${prefixCls}-${this.size}`]: !!this.size,
698e3b61   梁灏   iButton add some ...
61
62
                          [`${prefixCls}-loading`]: this.loading != null && this.loading,
                          [`${prefixCls}-icon-only`]: !this.showSlot && (!!this.icon || this.loading)
7fa943eb   梁灏   init
63
                      }
b0893113   jingsam   :art: add eslint
64
                  ];
7fa943eb   梁灏   init
65
              }
698e3b61   梁灏   iButton add some ...
66
          },
99d0429e   梁灏   update Button & T...
67
68
69
70
71
          methods: {
              handleClick (event) {
                  this.$emit('click', event);
              }
          },
d47ea998   梁灏   support Button an...
72
          mounted () {
99d0429e   梁灏   update Button & T...
73
              this.showSlot = this.$slots.default !== undefined;
7fa943eb   梁灏   init
74
          }
b0893113   jingsam   :art: add eslint
75
      };
d6342fe1   jingsam   fixed ie bug
76
  </script>