vue-radio-toggle-buttons
Version:
Radio toggle buttons for Vue.
25 lines (24 loc) • 701 B
TypeScript
import { StandardProperties } from 'csstype';
import { Vue } from 'vue-property-decorator';
export default class RadioToggle extends Vue {
mValue: any;
value: string;
color: string;
textColor: string;
selectedTextColor: string;
disabled: boolean;
currentValue: any;
isHovered: boolean;
onClick(e: any): void;
onMouseOver(): void;
onMouseOut(): void;
get computedValue(): any;
set computedValue(newValue: any);
get isSelected(): boolean;
get classes(): {
'is-selected': boolean;
'is-hovered': boolean;
};
get style(): StandardProperties<string | 0>;
onMValueChange(newValuue: any): void;
}