UNPKG

shogi-player

Version:

Shogi board web components has functions for replaying, manipulating, and editing

21 lines (15 loc) 291 B
<!DOCTYPE html> <meta charset="utf-8"> <title>ShogiPlayer demo</title> <script src="//unpkg.com/vue@2"></script> <script src="./shogi-player.umd.js"></script> <div id="app"> <demo></demo> </div> <script> new Vue({ components: { demo: ShogiPlayer } }).$mount('#app') </script>