UNPKG

vue-eyedrop-tool

Version:
20 lines (15 loc) 310 B
<meta charset="utf-8"> <title>eyedrop demo</title> <script src="https://unpkg.com/vue"></script> <script src="./eyedrop.umd.js"></script> <link rel="stylesheet" href="./eyedrop.css"> <div id="app"> <demo></demo> </div> <script> new Vue({ components: { demo: eyedrop } }).$mount('#app') </script>