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

39 lines
755 B
Vue
Raw Normal View History

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
model: {
prop: 'checked',
},
props: {
prefixCls: {
default: 'ant-tag',
type: String,
},
checked: Boolean,
},
computed: {
2019-01-12 03:33:27 +00:00
classes() {
const { prefixCls, checked } = this;
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('input', !checked);
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}
</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
};