repente

Untitled

May 14th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. import m from "mithril";
  2.  
  3.  
  4. const search = {
  5. view: function() {
  6. return m("main.main", [
  7. m("h2", "Sok produkter"),
  8. m("p.ex01.ex02[style=color:blue]", "welcome to tag <p>"),
  9. m("form", {
  10. onsubmit: function (e) {
  11. e.preventDefault();
  12.  
  13. }
  14. }, [
  15. m("label.input-label", "Sok"),
  16. m("input.input[type=text][placeholder=Produktnamn", {
  17. oninput: function (e) {
  18. console.log(e.target.value);
  19. }
  20. })
  21. ])
  22. ]);
  23. }
  24. };
  25.  
  26. export { search };
Add Comment
Please, Sign In to add comment