node-share: awits
Signed-off-by: Varun Patil <radialapps@gmail.com>pulsejet/aio-hw-docs
parent
14a890796e
commit
e396359011
|
@ -154,10 +154,10 @@ export default defineComponent({
|
||||||
|
|
||||||
async shareOrCopy(url: string) {
|
async shareOrCopy(url: string) {
|
||||||
if (nativex.has()) {
|
if (nativex.has()) {
|
||||||
nativex.shareUrl(url);
|
await nativex.shareUrl(url);
|
||||||
} else if ('share' in window.navigator) {
|
} else if ('share' in window.navigator) {
|
||||||
await this.copy(url);
|
await this.copy(url);
|
||||||
window.navigator.share({ title: this.filename, url: url });
|
await window.navigator.share({ title: this.filename, url: url });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue