Practical guides, tutorials, and insights from years of building web and desktop applications. Check out code examples you can actually use!
Social Share Buttons in Vuetify
Enabling social share buttons in Vuetify is quite easy. All you have to do is stitch together three components provided out of the box - Speed dial Buttons Icons We will create a quick demo on Codepen. Create a new Codepen, click on Settings, navigate to JS and add the below libraries - https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js Click on Save & Close. In the JS editor, paste following code to initialise Vue. new Vue({ el: "#app", vuetify: new Vuetify(), methods: {}, data() { return { dialShare: false, pageUrl: "https://techformist.com", }; }, }); In the “normal” app, you would want to extract the page URL with something like this.$route.fullURL. ...