matthewp / corset

Declarative data bindings, bring your own backend.

Home Page:https://corset.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

data-toggle

matthewp opened this issue · comments

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;
}