primevue-mirror/components/lib/chips/Chips.vue

12 lines
232 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<script>
2024-04-18 14:18:40 +00:00
import InputChips from 'primevue/inputchips';
2022-09-06 12:03:37 +00:00
export default {
name: 'Chips',
2024-04-18 14:18:40 +00:00
extends: InputChips,
2024-04-16 09:35:02 +00:00
mounted() {
2024-04-18 14:18:40 +00:00
console.warn('Deprecated since v4. Use InputChips component instead.');
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>