mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
fix(prop): update to mutable option
This commit is contained in:
@ -29,9 +29,9 @@ export class Toggle implements BooleanInputComponent {
|
||||
@Prop() color: string;
|
||||
@Prop() mode: string;
|
||||
|
||||
@Prop({ state: true }) checked: boolean = false;
|
||||
@Prop({ state: true }) disabled: boolean = false;
|
||||
@Prop({ state: true }) value: string;
|
||||
@Prop({ mutable: true }) checked: boolean = false;
|
||||
@Prop({ mutable: true }) disabled: boolean = false;
|
||||
@Prop({ mutable: true }) value: string;
|
||||
|
||||
|
||||
ionViewWillLoad() {
|
||||
|
||||
Reference in New Issue
Block a user