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.
45 lines
1.1 KiB
45 lines
1.1 KiB
import { inject } from 'vue';
|
|
import PropTypes from '../_util/vue-types';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
|
|
export default {
|
|
name: 'ACheckableTag',
|
|
props: {
|
|
prefixCls: PropTypes.string,
|
|
checked: PropTypes.bool,
|
|
onChange: PropTypes.func,
|
|
},
|
|
setup() {
|
|
return {
|
|
configProvider: inject('configProvider', ConfigConsumerProps),
|
|
};
|
|
},
|
|
computed: {
|
|
classes() {
|
|
const { checked, prefixCls: customizePrefixCls } = this;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
return {
|
|
[`${prefixCls}`]: true,
|
|
[`${prefixCls}-checkable`]: true,
|
|
[`${prefixCls}-checkable-checked`]: checked,
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick() {
|
|
const { checked } = this;
|
|
this.$emit('update:checked', !checked);
|
|
this.$emit('change', !checked);
|
|
},
|
|
},
|
|
render() {
|
|
const { classes, handleClick, $slots } = this;
|
|
return (
|
|
<div class={classes} onClick={handleClick}>
|
|
{$slots.default && $slots.default()}
|
|
</div>
|
|
);
|
|
},
|
|
};
|