从索引文件导入Redurs时出错

时间:2017-07-17 16:36:51

标签: redux react-redux

我正在导出这样的用户缩减器:

export users from './users'

并从index.js文件导出,如下所示:

import * as reducers from './redux'

能够做到

    Syntax error: Unexpected token, expected { (1:7)

> 1 | export users from './users'
    |        ^
  2 | 

但我收到此错误

{{1}}

1 个答案:

答案 0 :(得分:2)

我相信您可能需要尝试export {default as users} from "./users"

ES6模块的主要参考信息是Axel Rauschmayer博士的书“探索ES6”,特别是section on module import export syntax