You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
import PropTypes from '../_util/vue-types';
|
|
import { filterEmpty, getListeners } from '../_util/props-util';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
|
|
export default {
|
|
name: 'AInputGroup',
|
|
props: {
|
|
prefixCls: PropTypes.string,
|
|
size: {
|
|
validator(value) {
|
|
return ['small', 'large', 'default'].includes(value);
|
|
},
|
|
},
|
|
compact: Boolean,
|
|
},
|
|
inject: {
|
|
configProvider: { default: () => ConfigConsumerProps },
|
|
},
|
|
computed: {
|
|
classes() {
|
|
const { prefixCls: customizePrefixCls, size, compact = false } = this;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('input-group', customizePrefixCls);
|
|
|
|
return {
|
|
[`${prefixCls}`]: true,
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[`${prefixCls}-compact`]: compact,
|
|
};
|
|
},
|
|
},
|
|
methods: {},
|
|
render() {
|
|
return (
|
|
<span class={this.classes} {...{ on: getListeners(this) }}>
|
|
{filterEmpty(this.$slots.default)}
|
|
</span>
|
|
);
|
|
},
|
|
};
|