v-blockly
Version:
Blockly wrapped in a vue component
20 lines (15 loc) • 314 B
HTML
<meta charset="utf-8">
<title>VBlockly demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="./VBlockly.umd.js"></script>
<link rel="stylesheet" href="./VBlockly.css">
<div id="app">
<demo></demo>
</div>
<script>
new Vue({
components: {
demo: VBlockly
}
}).$mount('#app')
</script>