Mini Program based on wepy
cannot clear the input in input when the input control loses focus
<input bindblur="addTag" value="{{value}}"/>
...
data = {
value: ""
}
...
methods = {
addTag() {
this.value = "";// ???
}
}
Mini Program"s official development document says that the value property of input specifies the initial value, so does it only work during initialization?
Please give me some advice