can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
15 lines (13 loc) • 415 B
HTML
<script type='text/stache' id='basics' can-autorender>
<can-import from="can/view/autorender/tests/steal-basics"/>
<my-component></my-component>
</script>
<script src='../../node_modules/steal/steal.js' main='can/view/autorender/'></script>
<script>
steal('can/view/autorender',function(ready){
ready(function(){
}, function(error){
console.log("something went wrong", error);
});
});
</script>