vue-radio-toggle-buttons
Version:
Radio toggle buttons for Vue.
14 lines (13 loc) • 438 B
TypeScript
import { Vue } from 'vue-property-decorator';
import RadioToggleValue from '../types/RadioToggleValue';
export default class RadioToggleButtons extends Vue {
mValue: any;
values: RadioToggleValue[];
color: string;
textColor: string;
selectedTextColor: string;
get actualColor(): string;
get actualTextColor(): string;
get actualSelectedTextColor(): string;
onInput(newValue: any): void;
}