こんにちは、webpackとES6の新機能です.HTMLでインポートされたクラスにアクセスしようとしています。私はそれにindex.jsインポートされたクラスがあります。webpackがhtmlでes6クラスをインポートする方法
import one from './src/one.js';
import two from './src/two.js';
import three from './src/three.js';
export {
one,
two,
three
}
in index.html私はクラスにアクセスしようとしています。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="bundle.js"></script>
</head>
<body>
<script>
let oneObj = new one();
</script>
</body>
</html>
「1つは定義されていません」というエラーが表示されます。どうすればhtmlのクラスにアクセスできますか教えてください。
お返事ありがとうございます。 app.jsでは "oneObj"を使用できますが、index.htmlにoneObjを使用したい –