Created
July 14, 2021 08:07
-
-
Save vaibhavgehani/fd481ce6338f60edf8dbb2aada53e414 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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