UNPKG

vue-draggable-cal

Version:

A datepicker Vue component. Compatible with Vue 2.x

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