Add count controller

This commit is contained in:
Oliver Davies 2024-03-29 00:50:46 +00:00
parent d379fdb73d
commit 7146a7f66d
2 changed files with 42 additions and 2 deletions

View file

@ -4,8 +4,13 @@
<title>Stimulus esbuild example</title>
</head>
<body>
<div data-controller="hello">
<h1>Hello, World!</h1>
<div data-controller="count">
<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>