Lines Matching refs:inputValue
34 @Link inputValue: string
39 TextInput({ placeholder: '', text: this.inputValue }).height(60).width('90%')
41 this.inputValue = value
50 @State inputValue: string = 'click me'
53 inputValue: $inputValue
59 Button(this.inputValue)
73 private inputValue: string
79 TextInput({ placeholder: '', text: this.inputValue }).height(60).width('90%')
90 @State inputValue: string = 'click me'
93 inputValue: this.inputValue,
95 this.inputValue = val
102 Button(this.inputValue)
117 @LocalStorageLink('inputVal') inputValue: string = ''
122 TextInput({ placeholder: '', text: this.inputValue }).height(60).width('90%')
124 this.inputValue = value;
133 @LocalStorageLink('inputVal') inputValue: string = ''
140 Button(this.inputValue)