UNPKG

vue-radio-toggle-buttons

Version:
14 lines (13 loc) 438 B
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; }