matthewp / corset

Declarative data bindings, bring your own backend.
https://corset.dev/
BSD 2-Clause "Simplified" License
277 stars 2 forks source link

data-toggle #142

Open matthewp opened 2 years ago

matthewp commented 2 years ago

Similar to attr-toggle, removes the attribute when the value is false.

#app {
  data-value: theme dark;
  data-toggle: theme true;
}

#app:not(.dark-mode) {
  data-toggle: theme false;
}