primevue-mirror/components/lib/inputswitch/InputSwitch.vue

12 lines
246 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<script>
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',
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>