UNPKG

vue-cal

Version:

A Vue JS full calendar, no dependency, no BS. :metal:

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