test.html 406 B

1234567891011121314151617
  1. <!doctype html>
  2. <meta charset=utf8>
  3. <script>var exports = {}</script>
  4. <script src="../dist/style-mod.js"></script>
  5. <p>Hello</p>
  6. <script>
  7. let mod = new StyleModule({
  8. one: {color: "green"},
  9. two: {textDecoration: "underline",
  10. "&:hover": {textDecoration: "overline"}}
  11. })
  12. StyleModule.mount(document, mod)
  13. document.body.className = mod.one
  14. document.querySelector("p").className = mod.two
  15. </script>