Importing p5 into a Vue app
问题 I added the p5 library into the dom like so... <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>App</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.10/p5.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.10/addons/p5.dom.js"></script> </head> <body> <div id="app"></div> <script src="/dist/build.js"></script> </body> </html> So technically I should be able to grab it via window variable within my Vue code... <template> <div