Merge pull request #2833 from Xotic750/button_tabindex

Feature: Button tab navigation
This commit is contained in:
Aresn 2018-01-17 17:58:59 +08:00 committed by GitHub
commit 4ba1df8187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 3 deletions

View file

@ -1,5 +1,11 @@
<template>
<button :type="htmlType" :class="classes" :disabled="disabled" @click="handleClick">
<button
:type="htmlType"
:class="classes"
:disabled="disabled"
@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>
@ -46,6 +52,7 @@
},
data () {
return {
isFocused: false,
showSlot: true
};
},
@ -59,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;

View file

@ -4,6 +4,11 @@
.btn;
.btn-default;
&.@{btn-prefix-cls}-focused {
box-shadow: 0 0 2px @link-hover-color, 0 0 2px @link-hover-color, 0 0 2px @link-hover-color, 0 0 2px @link-hover-color;
z-index: 1;
}
&-long{
width: 100%;
}