primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [![Join the chat at https://gitter.im/primefaces/primevu
13 lines (12 loc) • 411 B
TypeScript
import Vue from 'vue';
export declare class InputSwitch extends Vue {
value?: boolean;
inputId?: string;
name?: string;
disabled?: boolean;
$emit(eventName: 'click', event: Event): this;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'change', event: Event): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
}