baryshev / template-benchmark

111 stars 49 forks source link

How to use javascript with ect template #18

Open dangquan045 opened 7 years ago

dangquan045 commented 7 years ago

ex:

<script>
  let color: 'red';
</script>
<div class="box <%- @color %>"></div>
<style rel="stylesheet">
  .box {
    width: 100px;
    height: 100px;
  }
  .red {
    background: red;
  }
</style>