1
2
3
4
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
| <template>
| <button
| class="el-button"
| @click="handleClick"
| :disabled="buttonDisabled || loading"
| :autofocus="autofocus"
| :type="nativeType"
| :class="[
| type ? 'el-button--' + type : '',
| buttonSize ? 'el-button--' + buttonSize : '',
| {
| 'is-disabled': buttonDisabled,
| 'is-loading': loading,
| 'is-plain': plain,
| 'is-round': round,
| 'is-circle': circle
| }
| ]"
| >
| <i class="el-icon-loading" v-if="loading"></i>
| <i :class="icon" v-if="icon && !loading"></i>
| <span v-if="$slots.default"><slot></slot></span>
| </button>
| </template>
| <script>
| export default {
| name: 'ElButton',
|
| inject: {
| elForm: {
| default: ''
| },
| elFormItem: {
| default: ''
| }
| },
|
| props: {
| type: {
| type: String,
| default: 'default'
| },
| size: String,
| icon: {
| type: String,
| default: ''
| },
| nativeType: {
| type: String,
| default: 'button'
| },
| loading: Boolean,
| disabled: Boolean,
| plain: Boolean,
| autofocus: Boolean,
| round: Boolean,
| circle: Boolean
| },
|
| computed: {
| _elFormItemSize() {
| return (this.elFormItem || {}).elFormItemSize;
| },
| buttonSize() {
| return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
| },
| buttonDisabled() {
| return this.$options.propsData.hasOwnProperty('disabled') ? this.disabled : (this.elForm || {}).disabled;
| }
| },
|
| methods: {
| handleClick(evt) {
| this.$emit('click', evt);
| }
| }
| };
| </script>
|
|