2022-09-06 12:03:37 +00:00
|
|
|
<script>
|
2024-04-18 14:17:41 +00:00
|
|
|
import Select from 'primevue/select';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Dropdown',
|
2024-04-18 14:17:41 +00:00
|
|
|
extends: Select,
|
2024-01-16 11:28:03 +00:00
|
|
|
mounted() {
|
2024-04-18 14:17:41 +00:00
|
|
|
console.warn('Deprecated since v4. Use Select 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>
|