lang/js/ ModulesInBrowsers
To use ES6Modules in browsers, use the type="module"
attribute on the <script>
:
<script type="module">
import { App } from './app.js'
</script>
To use ES6Modules in browsers, use the type="module"
attribute on the <script>
:
<script type="module">
import { App } from './app.js'
</script>