12 lines
232 B
Vue
12 lines
232 B
Vue
|
|
<script>
|
||
|
|
import InputChips from 'primevue/inputchips';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'Chips',
|
||
|
|
extends: InputChips,
|
||
|
|
mounted() {
|
||
|
|
console.warn('Deprecated since v4. Use InputChips component instead.');
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|