vue-eyedrop-tool
Version:
Eyedrop tool for vue
20 lines (15 loc) • 310 B
HTML
<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>