<meta charset="utf-8">
<title>tristatecheckbox demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="./tristatecheckbox.umd.js"></script>


<div id="app">
  <demo></demo>
</div>

<script>
new Vue({
  components: {
    demo: tristatecheckbox
  }
}).$mount('#app')
</script>