Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created July 14, 2021 08:07
Show Gist options
  • Select an option

  • Save vaibhavgehani/fd481ce6338f60edf8dbb2aada53e414 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgehani/fd481ce6338f60edf8dbb2aada53e414 to your computer and use it in GitHub Desktop.
mounted() {
this.addScript();
},
methods: {
addScript() {
const script = document.createElement("script");
script.src ="https://js.braintreegateway.com/js/braintree-2.32.1.min.js";
script.addEventListener("load", this.initializeBraintree);
document.body.appendChild(script);
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment