Blame view

local/routers/button.vue 3.34 KB
7fa943eb   梁灏   init
1
  <template>
e1596b7e   梁灏   add Button UI
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
      <Button>Default</Button>
      <Button type="primary">Primary</Button>
      <Button type="ghost">Ghost</Button>
      <br><br>
      <Button type="primary" size="large">Large</Button>
      <Button type="primary">Default</Button>
      <Button type="primary" size="small">Small</Button>
      <br><br>
      <Button>Default</Button>
      <Button disabled>Default(Disabled)</Button>
      <br><br>
      <Button type="primary">Primary</Button>
      <Button type="primary" disabled>Primary(Disabled)</Button>
      <br><br>
      <Button type="ghost">Ghost</Button>
      <Button type="ghost" disabled>Ghost(Disabled)</Button>
      <br><br>
      <Button type="primary" shape="circle" icon="ios-search"></Button>
      <Button type="primary" icon="ios-search">搜索</Button>
      <br><br>
      <Button type="ghost" shape="circle">
          <Icon type="search"></Icon>
7fa943eb   梁灏   init
24
      </Button>
e1596b7e   梁灏   add Button UI
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
      <Button type="ghost">
          <Icon type="search"></Icon>
          搜索
      </Button>
      <Button type="ghost" shape="circle" size="large">
          <Icon type="search"></Icon>
      </Button>
      <Button type="ghost" shape="circle" size="small">
          <Icon type="search"></Icon>
      </Button>
      <br><br><br>
      <Button type="primary" loading>Loading...</Button>
      <Button type="primary" loading size="large">Loading...</Button>
      <Button type="primary" loading size="small">Loading...</Button>
      <Button type="primary" :loading="loading" @click="toLoading">
          <span v-if="!loading">Click me!</span>
          <span v-else>Loading...</span>
      </Button>
      <Button type="primary" :loading="loading2" icon="checkmark-round" @click="toLoading2">
          <span v-if="!loading2">Click me!</span>
          <span v-else>Loading...</span>
      </Button>
      <h4>基本</h4>
      <Button-group size="large">
          <Button>取消</Button>
          <Button type="primary">确定</Button>
      </Button-group>
7fa943eb   梁灏   init
52
      <Button-group>
e1596b7e   梁灏   add Button UI
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
          <Button type="primary">L</Button>
          <Button>M</Button>
          <Button type="ghost">R</Button>
      </Button-group>
      <h4>配合图标</h4>
      <Button-group>
          <Button type="primary">
              <Icon type="chevron-left"></Icon>
              前进
          </Button>
          <Button type="primary">
              后退
              <Icon type="chevron-right"></Icon>
          </Button>
      </Button-group>
      <Button-group>
          <Button type="primary" icon="cloud"></Button>
          <Button type="primary" icon="upload"></Button>
7fa943eb   梁灏   init
71
      </Button-group>
7fa943eb   梁灏   init
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  </template>
  <script>
      import { Button, Icon, Input, Switch, Radio, Checkbox, InputNumber, Row, Col, Page } from 'iview';
      const ButtonGroup = Button.Group;
      const RadioGroup = Radio.Group;
      const CheckboxGroup = Checkbox.Group;
  
      export default {
          components: {
              Button,
              ButtonGroup,
              Icon,
              iInput: Input,
              Switch,
              Radio,
              RadioGroup,
              Checkbox,
              CheckboxGroup,
              InputNumber,
              Row,
              iCol: Col,
              Page
          },
          props: {
          
          },
          data () {
              return {
e1596b7e   梁灏   add Button UI
100
101
                  loading: false,
                  loading2: false
7fa943eb   梁灏   init
102
103
              }        
          },
7fa943eb   梁灏   init
104
          methods: {
e1596b7e   梁灏   add Button UI
105
106
              toLoading () {
                  this.loading = true;
7fa943eb   梁灏   init
107
              },
e1596b7e   梁灏   add Button UI
108
109
              toLoading2 () {
                  this.loading2 = true;
7fa943eb   梁灏   init
110
111
112
113
              }
          }
      }
  </script>