mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
11 lines
246 B
Vue
Executable file
11 lines
246 B
Vue
Executable file
<script>
|
|
import ToggleSwitch from 'primevue/toggleswitch';
|
|
|
|
export default {
|
|
name: 'InputSwitch',
|
|
extends: ToggleSwitch,
|
|
mounted() {
|
|
console.warn('Deprecated since v4. Use ToggleSwitch component instead.');
|
|
}
|
|
};
|
|
</script>
|