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:
@ -15,7 +15,7 @@ export interface SelectPopoverOption {
|
||||
export class SelectPopover {
|
||||
@Prop() options: SelectPopoverOption[];
|
||||
|
||||
@Prop({ state: true }) value: string;
|
||||
@Prop({ mutable: true }) value: string;
|
||||
|
||||
@PropDidChange('value')
|
||||
valueChanged(val: string) {
|
||||
|
||||
@ -83,7 +83,7 @@ export class Select {
|
||||
/**
|
||||
* @input {string} the value of the select.
|
||||
*/
|
||||
@Prop({ state: true }) value: string;
|
||||
@Prop({ mutable: true }) value: string;
|
||||
|
||||
// /**
|
||||
// * @hidden
|
||||
|
||||
Reference in New Issue
Block a user