
support Tree,many component add name $option;add dispatch and broadcast methods, mixins it
42 lines
1.1 KiB
Vue
42 lines
1.1 KiB
Vue
<template>
|
|
<div :class="classes">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { oneOf } from '../../utils/assist';
|
|
|
|
const prefixCls = 'ivu-btn-group';
|
|
|
|
export default {
|
|
name: 'ButtonGroup',
|
|
props: {
|
|
size: {
|
|
validator (value) {
|
|
return oneOf(value, ['small', 'large']);
|
|
}
|
|
},
|
|
shape: {
|
|
validator (value) {
|
|
return oneOf(value, ['circle', 'circle-outline']);
|
|
}
|
|
},
|
|
vertical: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
computed: {
|
|
classes () {
|
|
return [
|
|
`${prefixCls}`,
|
|
{
|
|
[`${prefixCls}-${this.size}`]: !!this.size,
|
|
[`${prefixCls}-${this.shape}`]: !!this.shape,
|
|
[`${prefixCls}-vertical`]: this.vertical
|
|
}
|
|
];
|
|
}
|
|
}
|
|
};
|
|
</script>
|