iview/src/components/button/button.vue

77 lines
2.4 KiB
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
<button :type="htmlType" :class="classes" :disabled="disabled" @click="handleClick">
2016-11-30 13:25:58 +08:00
<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>
2016-09-09 14:29:19 +08:00
</button>
</template>
<script>
import Icon from '../icon';
import { oneOf } from '../../utils/assist';
const prefixCls = 'ivu-btn';
export default {
2017-03-01 17:01:22 +08:00
name: 'Button',
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']);
}
},
icon: String,
long: {
type: Boolean,
default: false
}
2016-09-09 14:29:19 +08:00
},
data () {
return {
showSlot: true
2016-12-25 22:49:42 +08:00
};
},
2016-09-09 14:29:19 +08:00
computed: {
classes () {
return [
`${prefixCls}`,
{
[`${prefixCls}-${this.type}`]: !!this.type,
[`${prefixCls}-long`]: this.long,
2016-09-09 14:29:19 +08:00
[`${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)
2016-09-09 14:29:19 +08:00
}
2016-12-25 22:49:42 +08:00
];
2016-09-09 14:29:19 +08:00
}
},
methods: {
handleClick (event) {
this.$emit('click', event);
}
},
mounted () {
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>