// 报错export 1;// 报错var m = 1;export m;而// 写法一export var m = 1;// 写法二var m = 1;export {m};// 写法三var n = 1;export {n as m}; 查看完整描述