LoginSignup
0
0

More than 5 years have passed since last update.

riot.js table ショート表記タグ

Posted at

tr "|" and td ","

<tbl items="a,b,c,d|aliceblue,brown,chacole,darkblue|#aaa,#bbb,#ccc|a,b,c,d,e"></tbl>

全部

<script src="//gnjo.github.io/riot.js"></script>
<tbl items="a,b,c,d|aliceblue,brown,chacole,darkblue|#aaa,#bbb,#ccc|a,b,c,d,e"></tbl>
<style>*{font:14px/normal monaco,consolas,monospace}</style>
riot.tag(
 'tbl'
 ,`<table>
<tr each="{item in opts.items.split('|')}"><td each="{d in item.split(',')}">{d}<td></tr>
</table>`,function(opts){
})

riot.mount('tbl');
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0