在下面的代码示例中,为什么注释行无法导入标记?我正在使用https://github.com/shama/es6-loader
module $ from 'jquery';
module React from 'react';
//import { marked } from 'marked';
var marked = require("marked");
这是一个示例存储库:https://github.com/justin808/react-tutorial-hot/tree/es6
此演示显示: 1. Webpack和热重载 2.反应 3. ES6
答案 0 :(得分:6)
如果没有任何要解构的内容,即marked
导出一个函数,那么您将使用destructuring operator无效的工作。
import marked from 'marked'
应该可以使用。
答案 1 :(得分:0)