A Vue component to use native sharing mechanism of the device as part of the Web Share API.
npm install vue-navigator-sharesh
$ npm install --save vue-navigator-share
`
Properties
| prop | type | description | required |
| ------ | ------ | ------ | ------ |
| on-error | Function | callback on error | false |
| on-success | Function | callback on success | false |
| url | String | url to share | true |
| title | String | title to share | false |
| text | String | text to share | false |
Usage
`HTML
v-bind:on-error="function"
v-bind:on-success="otherFunction"
url="url_to_share"
title="title_to_share"
text="text_to_share"
>
`
`javascript
`
Example
`HTML
v-bind:on-error="onError"
v-bind:on-success="onSuccess"
v-bind:url="url"
v-bind:title="title"
text="Hello World"
>
`
`javascript
``