一.使用tree组件(v1.2.3)
1.报错现象:
[ModuleBuildError: Module build failed: SyntaxError: Unexpected token
2.原因:
webpack
无法解析vue-jsx
的语法问题
3.解决方案
(1).安装依赖 [babel-plugin-transform-vue-jsx][1]
npm install\
babel-plugin-syntax-jsx\
babel-plugin-transform-vue-jsx\
babel-helper-vue-jsx-merge-props\
--save-dev
(2).在'.babelrc' 添加即可
"plugins": ["transform-vue-jsx"],