Guest User

Untitled

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>ES modules in the browser - almost - now | Basics: script type module</title>
  6. </head>
  7.  
  8. <body>
  9. <!-- Use a type set to "module" with a fallback -->
  10. <script type="module" src="app.js"></script>
  11. <script nomodule src="fallback.js"></script>
  12.  
  13. <!-- Or inline the script -->
  14. <script type="module">
  15. import App from "./app.js";
  16. console.log(App);
  17. </script>
  18. </body>
  19.  
  20. </html>
Add Comment
Please, Sign In to add comment