vue で tweet のシェアを実装してみる

参考

挙動

コード

    onClickShare() {
      let shareURL =
        "https://twitter.com/intent/tweet?text=" +
        `${this.product.name} produced by ${this.product.userProfile.name}` +
        "%20%23LINK" +
        "%20%23クリエイターが繋がる場所" +
        `&url=${this.product.url}`;
      window.open(shareURL, "_blank");
    },
YouTube