You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- 1) Show a "result" of 'not there yet' as long as "value" is not equal to 37 - you can change "value" with the buttons. Print 'done' once you did it -->
12
+
<div>
13
+
<p>Current Value: {{ value }}</p>
14
+
<button@click="value += 5">Add 5</button>
15
+
<button@click="value += 1">Add 1</button>
16
+
<p>{{ result }}</p>
17
+
</div>
18
+
<!-- 2) Watch for changes in the "result" and reset the "value" after 5 seconds (hint: setTimeout(..., 5000) -->
0 commit comments