Blame view

src/components/button/button-group.vue 1.03 KB
7fa943eb   梁灏   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <template>
      <div :class="classes">
          <slot></slot>
      </div>
  </template>
  <script>
      import { oneOf } from '../../utils/assist';
  
      const prefixCls = 'ivu-btn-group';
  
      export default {
          props: {
              size: {
                  validator (value) {
                      return oneOf(value, ['small', 'large']);
                  }
              },
f1b3ed30   梁灏   Button add circle...
18
19
20
21
              shape: {
                  validator (value) {
                      return oneOf(value, ['circle', 'circle-outline']);
                  }
fd6512a9   Rijn   implemented verti...
22
23
24
25
              },
              vertical: {
                  type: Boolean,
                  default: false
f1b3ed30   梁灏   Button add circle...
26
              }
7fa943eb   梁灏   init
27
28
29
30
31
32
          },
          computed: {
              classes () {
                  return [
                      `${prefixCls}`,
                      {
f1b3ed30   梁灏   Button add circle...
33
                          [`${prefixCls}-${this.size}`]: !!this.size,
fd6512a9   Rijn   implemented verti...
34
35
                          [`${prefixCls}-${this.shape}`]: !!this.shape,
                          [`${prefixCls}-vertical`]: this.vertical
7fa943eb   梁灏   init
36
                      }
b0893113   jingsam   :art: add eslint
37
                  ];
7fa943eb   梁灏   init
38
39
              }
          }
b0893113   jingsam   :art: add eslint
40
41
      };
  </script>