chore(update): stencil 0.1.1

This commit is contained in:
Adam Bradley
2018-01-08 20:24:02 -06:00
parent da68da39da
commit 4f7c7e658d
24 changed files with 539 additions and 185 deletions

View File

@ -1,4 +1,4 @@
import { Component, Element, Event, EventEmitter, Listen, Prop, PropDidChange } from '@stencil/core';
import { Component, Element, Event, EventEmitter, Listen, Prop, Watch } from '@stencil/core';
@Component({
@ -46,7 +46,7 @@ export class Segment {
*/
@Prop({ mutable: true }) value: string;
@PropDidChange('value')
@Watch('value')
protected valueChanged(val: string) {
this.selectButton(val);
}