mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
23 lines
388 B
Plaintext
23 lines
388 B
Plaintext
class {
|
|
onInput(input) {
|
|
this.state = {
|
|
counter: 1
|
|
}
|
|
}
|
|
|
|
increment() {
|
|
this.state.counter++;
|
|
}
|
|
}
|
|
|
|
<div>
|
|
<input type='text'
|
|
placeholder="What are you looking for?"
|
|
tabindex=1
|
|
class='input'
|
|
autocomplete='off'
|
|
key='searchInput'>
|
|
|
|
<button type='button' class='btn btn-search'></button>
|
|
</div>
|