0.1.1 • Published 2 months ago

stimulus-shorthand v0.1.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

Stimulus Shorthand

Convention to make simple controllers less noisy in the template.

Usage

// app/javascripts/controllers/if_controller.js
shorthand({ controller: "if", value: "condition" })
export default class extends Controller {
  static values = {
    condition: String,
  }
  // ...
}
<div data-if="checkbox is checked">
<!-- equivalent to: -->
<div data-controller="if" data-if-condition-value="checkbox is checked">
0.1.1

2 months ago

0.1.0

6 months ago