2016-09-09 14:29:19 +08:00
|
|
|
<template>
|
2018-06-21 09:57:38 +08:00
|
|
|
<a
|
|
|
|
v-if="to"
|
|
|
|
:class="classes"
|
|
|
|
:disabled="disabled"
|
|
|
|
:href="linkUrl"
|
|
|
|
:target="target"
|
|
|
|
@click="handleClickLink">
|
|
|
|
<Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon>
|
|
|
|
<Icon :type="icon" :custom="customIcon" v-if="(icon || customIcon) && !loading"></Icon>
|
|
|
|
<span v-if="showSlot" ref="slot"><slot></slot></span>
|
|
|
|
</a>
|
2018-01-16 16:04:16 +01:00
|
|
|
<button
|
2018-06-21 09:57:38 +08:00
|
|
|
v-else
|
2018-01-16 16:04:16 +01:00
|
|
|
:type="htmlType"
|
|
|
|
:class="classes"
|
|
|
|
:disabled="disabled"
|
2018-06-21 09:57:38 +08:00
|
|
|
@click="handleClickLink">
|
2016-11-30 13:25:58 +08:00
|
|
|
<Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon>
|
2018-06-21 09:20:15 +08:00
|
|
|
<Icon :type="icon" :custom="customIcon" v-if="(icon || customIcon) && !loading"></Icon>
|
2017-03-01 14:43:27 +08:00
|
|
|
<span v-if="showSlot" ref="slot"><slot></slot></span>
|
2016-09-09 14:29:19 +08:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Icon from '../icon';
|
|
|
|
import { oneOf } from '../../utils/assist';
|
2018-06-21 09:57:38 +08:00
|
|
|
import mixinsLink from '../../mixins/link';
|
2016-09-09 14:29:19 +08:00
|
|
|
|
|
|
|
const prefixCls = 'ivu-btn';
|
|
|
|
|
|
|
|
export default {
|
2017-03-01 17:01:22 +08:00
|
|
|
name: 'Button',
|
2018-06-21 09:57:38 +08:00
|
|
|
mixins: [ mixinsLink ],
|
2016-09-09 14:29:19 +08:00
|
|
|
components: { Icon },
|
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
validator (value) {
|
2017-08-21 16:33:09 +08:00
|
|
|
return oneOf(value, ['primary', 'ghost', 'dashed', 'text', 'info', 'success', 'warning', 'error', 'default']);
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
shape: {
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['circle', 'circle-outline']);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
validator (value) {
|
2017-08-24 17:25:21 +08:00
|
|
|
return oneOf(value, ['small', 'large', 'default']);
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
loading: Boolean,
|
|
|
|
disabled: Boolean,
|
|
|
|
htmlType: {
|
|
|
|
default: 'button',
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['button', 'submit', 'reset']);
|
|
|
|
}
|
|
|
|
},
|
2018-06-21 09:20:15 +08:00
|
|
|
icon: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
customIcon: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
},
|
2016-11-21 10:00:52 +08:00
|
|
|
long: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-06-21 09:57:38 +08:00
|
|
|
},
|
|
|
|
to: {
|
|
|
|
type: [Object, String]
|
|
|
|
},
|
|
|
|
replace: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
type: String,
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['_blank', '_self', '_parent', '_top']);
|
|
|
|
},
|
|
|
|
default: '_self'
|
2016-11-21 10:00:52 +08:00
|
|
|
}
|
2016-09-09 14:29:19 +08:00
|
|
|
},
|
2016-11-01 17:01:59 +08:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
showSlot: true
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
2016-11-01 17:01:59 +08:00
|
|
|
},
|
2016-09-09 14:29:19 +08:00
|
|
|
computed: {
|
|
|
|
classes () {
|
|
|
|
return [
|
|
|
|
`${prefixCls}`,
|
|
|
|
{
|
|
|
|
[`${prefixCls}-${this.type}`]: !!this.type,
|
2016-11-21 10:00:52 +08:00
|
|
|
[`${prefixCls}-long`]: this.long,
|
2016-09-09 14:29:19 +08:00
|
|
|
[`${prefixCls}-${this.shape}`]: !!this.shape,
|
|
|
|
[`${prefixCls}-${this.size}`]: !!this.size,
|
2016-11-01 17:01:59 +08:00
|
|
|
[`${prefixCls}-loading`]: this.loading != null && this.loading,
|
2018-06-21 09:20:15 +08:00
|
|
|
[`${prefixCls}-icon-only`]: !this.showSlot && (!!this.icon || !!this.customIcon || this.loading)
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
];
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
2016-11-01 17:01:59 +08:00
|
|
|
},
|
2017-03-15 15:27:04 +08:00
|
|
|
methods: {
|
2018-06-21 09:57:38 +08:00
|
|
|
handleClickLink (event) {
|
2017-03-15 15:27:04 +08:00
|
|
|
this.$emit('click', event);
|
2018-06-21 09:57:38 +08:00
|
|
|
|
|
|
|
if (this.to) {
|
|
|
|
if (this.target === '_blank') {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
event.preventDefault();
|
|
|
|
this.handleClick();
|
|
|
|
}
|
|
|
|
}
|
2018-01-18 10:51:12 +08:00
|
|
|
}
|
2017-03-15 15:27:04 +08:00
|
|
|
},
|
2017-03-01 14:43:27 +08:00
|
|
|
mounted () {
|
2017-03-15 15:27:04 +08:00
|
|
|
this.showSlot = this.$slots.default !== undefined;
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
};
|
2016-10-28 17:24:52 +08:00
|
|
|
</script>
|