Crud Test

Data




Template used

table
  tbody
    tr
      th
        "Name"
      th
        "Price"
    for key, line in products
      tr
        td
          input value={{ line.name }} class="form-control"
        td
          input value={{ line.price }} class="form-control"
        td
          button lk-click={{ remove(key) }} class="btn"
            "Remove"
    tr
      td
        "Total"
      th
        "$"
        {{ total() }}
      td
    tr
      td
        input value={{ name }} class="form-control"
      td
        input value={{ price }} class="form-control"
      td
        button lk-click={{ add() }} class="btn btn-primary"
          "Add product"