UNPKG

vue-share-buttons

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