35 lines
868 B
HTML
35 lines
868 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Stimulus esbuild example</title>
|
|
</head>
|
|
<body>
|
|
<div
|
|
data-controller="count"
|
|
data-count-can-be-negative-value="true"
|
|
data-count-maximum-count-number-value="5"
|
|
>
|
|
<p>Count: <span data-count-target="result"></span></p>
|
|
|
|
<div>
|
|
<button type="button" data-action="count#increment">+</button>
|
|
<button type="button" data-action="count#decrement">-</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
data-controller="count"
|
|
data-count-can-be-negative-value="false"
|
|
>
|
|
<p>Count: <span data-count-target="result"></span></p>
|
|
|
|
<div>
|
|
<button type="button" data-action="count#increment">+</button>
|
|
<button type="button" data-action="count#decrement">-</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/build/app.js"></script>
|
|
</body>
|
|
</html>
|