mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
11 lines
232 B
Vue
Executable file
11 lines
232 B
Vue
Executable file
<script>
|
|
import InputChips from 'primevue/inputchips';
|
|
|
|
export default {
|
|
name: 'Chips',
|
|
extends: InputChips,
|
|
mounted() {
|
|
console.warn('Deprecated since v4. Use InputChips component instead.');
|
|
}
|
|
};
|
|
</script>
|