fix(prop): update to mutable option

This commit is contained in:
Adam Bradley
2017-08-31 21:28:00 -05:00
parent 1f2651664a
commit 00c883194c
10 changed files with 28 additions and 28 deletions

View File

@ -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) {

View File

@ -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