最近在学习React ES6的写法,遇到一个问题。
src/helloworld.js
index.html
我用babel cli将helloworld.js转码后载入index.html。但是报错 require is not defined。
我看了下babel将src中的import转成了require。这么说难道我还要在index.html中载入require.js吗?
.babelrc
{
"presets": [
"es2015", "react"
],
"plugins": []
}
aluckdog
相关分类