ant-design-vue/components/tag/CheckableTag.jsx

45 lines
1.1 KiB
Vue
Raw Normal View History

import { inject } from 'vue';
2019-09-20 11:19:59 +00:00
import PropTypes from '../_util/vue-types';
import { ConfigConsumerProps } from '../config-provider';
2017-11-09 07:58:53 +00:00
export default {
2018-04-08 13:17:20 +00:00
name: 'ACheckableTag',
2017-11-09 07:58:53 +00:00
props: {
2019-09-20 11:19:59 +00:00
prefixCls: PropTypes.string,
checked: PropTypes.bool,
2020-06-12 05:50:59 +00:00
onChange: PropTypes.func,
2017-11-09 07:58:53 +00:00
},
setup() {
return {
configProvider: inject('configProvider', ConfigConsumerProps),
};
2019-09-20 11:19:59 +00:00
},
2017-11-09 07:58:53 +00:00
computed: {
2019-01-12 03:33:27 +00:00
classes() {
2019-09-20 11:19:59 +00:00
const { checked, prefixCls: customizePrefixCls } = this;
const getPrefixCls = this.configProvider.getPrefixCls;
const prefixCls = getPrefixCls('tag', customizePrefixCls);
2017-11-09 07:58:53 +00:00
return {
[`${prefixCls}`]: true,
[`${prefixCls}-checkable`]: true,
[`${prefixCls}-checkable-checked`]: checked,
2019-01-12 03:33:27 +00:00
};
2017-11-09 07:58:53 +00:00
},
},
methods: {
2019-01-12 03:33:27 +00:00
handleClick() {
const { checked } = this;
this.$emit('update:checked', !checked);
2019-01-12 03:33:27 +00:00
this.$emit('change', !checked);
2017-11-09 07:58:53 +00:00
},
},
2019-01-12 03:33:27 +00:00
render() {
const { classes, handleClick, $slots } = this;
2018-03-19 01:43:31 +00:00
return (
<div class={classes} onClick={handleClick}>
{$slots.default && $slots.default()}
2018-03-19 01:43:31 +00:00
</div>
2019-01-12 03:33:27 +00:00
);
2018-03-19 01:43:31 +00:00
},
2019-01-12 03:33:27 +00:00
};