dpzxsm / taro-vform

一个基于Taro3.0的表单管理组件,轻量级。支持useForm,异步校验、表单复杂的联动
MIT License
5 stars 0 forks source link

是需要额外配置什么吗,解析不了 #1

Open fengshenhai-0727 opened 1 year ago

fengshenhai-0727 commented 1 year ago

ModuleBuildError: Module build failed (from ./node_modules/babel-loader/lib/index.js): SyntaxError: /Users/fengshenhai/workspace/nutui-react/node_modules/taro-vform/src/index.js: Unexpected token, expected "," (52:6)

50 | return ( 51 | <Form

52 | className='v-form' | ^ 53 | onSubmit={handleRef.current.form.submit} 54 | onReset={handleRef.current.form.reset} 55 | >

dpzxsm commented 1 year ago

看样子,是你把taro-vform 放入nutui-react这个npm包了吗?,这个报错是jsx解析问题,装个jsx的babel插件就能解决 。不过我还是建议taro-vfrom直接装在taro项目里面比较好。最好可以贴下你taro版本和配置 @fengshenhai-0727