2022-09-06 12:03:37 +00:00
|
|
|
<script>
|
2024-04-18 14:15:29 +00:00
|
|
|
import ToggleSwitch from 'primevue/toggleswitch';
|
2023-05-05 13:10:07 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
export default {
|
|
|
|
name: 'InputSwitch',
|
2024-04-18 14:15:29 +00:00
|
|
|
extends: ToggleSwitch,
|
|
|
|
mounted() {
|
|
|
|
console.warn('Deprecated since v4. Use ToggleSwitch 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>
|