Riot.js Bug Report Template

by gianlucaguarini

HTML

<script src="https://cdn.jsdelivr.net/g/[email protected](riot.min.js+compiler.min.js)"></script>
<my-tag></my-tag>

<script type="text/tmpl" id="my-tag-tmpl">
  <p>{ message }</p>
    
  // NOTE: script tag doesn't work in jsFiddle
  this.message = 'HELLO WORLD!'
</script>

CSS

body {
    font-family: sans-serif;
}

JavaScript

/**
 * Riot.js is loaded from External Resources
 * https://cdn.jsdelivr.net/g/[email protected](riot.min.js+compiler.min.js)
 */
riot.tag('my-tag', document.getElementById('my-tag-tmpl').innerHTML, function(opts){
    console.log('d')
    // use js here

})
riot.mount('my-tag')