Revert "update Button & style"

This reverts commit 4434b3abfb.
This commit is contained in:
梁灏 2018-01-18 10:27:14 +08:00
parent 4434b3abfb
commit 518c639ada
2 changed files with 17 additions and 5 deletions

View file

@ -3,7 +3,9 @@
:type="htmlType"
:class="classes"
:disabled="disabled"
@click="handleClick">
@blur="handleBlur"
@click="handleClick"
@focus="handleFocus">
<Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon>
<Icon :type="icon" v-if="icon && !loading"></Icon>
<span v-if="showSlot" ref="slot"><slot></slot></span>
@ -50,6 +52,7 @@
},
data () {
return {
isFocused: false,
showSlot: true
};
},
@ -63,15 +66,22 @@
[`${prefixCls}-${this.shape}`]: !!this.shape,
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-loading`]: this.loading != null && this.loading,
[`${prefixCls}-icon-only`]: !this.showSlot && (!!this.icon || this.loading)
[`${prefixCls}-icon-only`]: !this.showSlot && (!!this.icon || this.loading),
[`${prefixCls}-focused`]: this.isFocused
}
];
}
},
methods: {
handleBlur () {
this.isFocused = false;
},
handleClick (event) {
this.$emit('click', event);
}
},
handleFocus () {
this.isFocused = true;
},
},
mounted () {
this.showSlot = this.$slots.default !== undefined;