Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-sharelinks

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-sharelinks

Make links to share the current page on social media sites using Vue.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Add social media sharing links to your page with a simple Vue component.

Supported Platforms

  • Whatsapp
  • Facebook
  • Twitter
  • Pinterest
  • Tumblr
  • Google+
  • Linkedin

Usage

import VueSharelinks from 'vue-sharelinks';

new Vue({
    components: {VueSharelinks},
});
<vue-sharelinks></vue-sharelinks>

Props

  • url

    The URL that will be shared. Defaults to window.location.href.

  • title

    The title of the page being shared. Defaults to window.title.

  • image

    An URL to an image preview of the URL being shared. Optional. Only used on pinterest.

  • platforms

    An array of platform names to show. Default: all platforms will be displayed. Platforms specified in extra-platforms will always be shown.

  • extra-platforms

    An array of platform definitions. Default: []. E.g.:

    {
        name: 'facebook',
        href: 'https://www.facebook.com/sharer/sharer.php?u=%URL%',
        width: 400,
        height: 500
    },
    

Events

  • share-link-clicked(platform, url)

    Fired when a share link is clicked.

Slots

By default the links will contain the name of the platform. You can override these by providing a slot with the name of the platform.

<vue-sharelinks>
  <slot name="facebook">
    <img src="facebook.jpg" alt="Facebook">
  </slot>
</vue-sharelinks>
Before and after

You can insert extra content at the start or end of the list.

<vue-sharelinks>
  <slot name="before">
    Here is a list of social links
  </slot>
  <slot name="after">
    There was a list of social links
  </slot>
</vue-sharelinks>

Keywords

FAQs

Package last updated on 27 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc