ERROR in ./src/todo/footer.jsx
Module build failed: SyntaxError: D:/Documents/Projects/future/fount-end/vue-exmaples/vue-webpack-demo-02/src/todo/footer.jsx: Unexpected token (9:6)
7 | render() {
8 | return (
> 9 | <div></div>
| ^
10 | );
11 | }
12 | }
.babelrc文件名正确吗,插件在这个文件中配置了吗
检查babel和jsx相关的几个包是否正确安装,
检查.babelrc的文件是否存在?(请确认文件名是.babelrc)
检查里面的配置是否和老师的一样。
export default{
render(){
return (
<div id="footer">
<span>Writeen by you</span>
</div>
)
}
}