[Vuejs]-Vuejs: import function from external script

0👍

Finally i got it somehow

You can add external script into your index.html(in my case before closing body tag) and then just use window.paypal.Buttons().render() or whatever function you need in mounted hook of your component. It is available in window.anyFuncName

Leave a comment