44 lines
1.4 KiB
Vue
44 lines
1.4 KiB
Vue
<template>
|
|
<div v-if="visible" :class="cx('root')" :aria-label="label" v-bind="ptm('root')">
|
|
<slot>
|
|
<img v-if="image" :src="image" v-bind="ptm('image')" />
|
|
<component v-else-if="$slots.icon" :is="$slots.icon" :class="cx('icon')" v-bind="ptm('icon')" />
|
|
<span v-else-if="icon" :class="[cx('icon'), icon]" v-bind="ptm('icon')" />
|
|
<div v-if="label" :class="cx('label')" v-bind="ptm('label')">{{ label }}</div>
|
|
</slot>
|
|
<slot v-if="removable" name="removeicon" :onClick="close" :onKeydown="onKeydown">
|
|
<component :is="removeIcon ? 'span' : 'TimesCircleIcon'" tabindex="0" :class="[cx('removeIcon'), removeIcon]" @click="close" @keydown="onKeydown" v-bind="ptm('removeIcon')"></component>
|
|
</slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TimesCircleIcon from 'primevue/icons/timescircle';
|
|
import BaseChip from './BaseChip.vue';
|
|
|
|
export default {
|
|
name: 'Chip',
|
|
extends: BaseChip,
|
|
emits: ['remove'],
|
|
data() {
|
|
return {
|
|
visible: true
|
|
};
|
|
},
|
|
methods: {
|
|
onKeydown(event) {
|
|
if (event.key === 'Enter' || event.key === 'Backspace') {
|
|
this.close(event);
|
|
}
|
|
},
|
|
close(event) {
|
|
this.visible = false;
|
|
this.$emit('remove', event);
|
|
}
|
|
},
|
|
components: {
|
|
TimesCircleIcon
|
|
}
|
|
};
|
|
</script>
|