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.
ant-design-vue/components/tag/CheckableTag.vue

39 lines
684 B

<template>
<div :class="classes" @click="handleClick">
<slot />
</div>
</template>
<script>
export default {
name: 'CheckableTag',
model: {
prop: 'checked',
},
props: {
prefixCls: {
default: 'ant-tag',
type: String,
},
checked: Boolean,
},
computed: {
classes () {
const { prefixCls, checked } = this
return {
[`${prefixCls}`]: true,
[`${prefixCls}-checkable`]: true,
[`${prefixCls}-checkable-checked`]: checked,
}
},
},
methods: {
handleClick () {
const { checked } = this
this.$emit('input', !checked)
this.$emit('change', !checked)
},
},
}
</script>