mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
11 lines
219 B
Vue
Executable file
11 lines
219 B
Vue
Executable file
<script>
|
|
import Select from 'primevue/select';
|
|
|
|
export default {
|
|
name: 'Dropdown',
|
|
extends: Select,
|
|
mounted() {
|
|
console.warn('Deprecated since v4. Use Select component instead.');
|
|
}
|
|
};
|
|
</script>
|