ES6中表达export default const是无效的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6中表达export default const是无效的相关的知识,希望对你有一定的参考价值。

问题

如果您是ES6新手,可以参考一下本文——高手请移驾别往!
请先看下面的图形描述:
技术分享图片

也就是说,ES6中default后面是不允许跟const关键字的。

分析

上图中表达可以更换成另一种形式,就可以了,如下所示:

const decreaseAction={type:‘decrease‘}
export default decreaseAction

引用

1,https://segmentfault.com/q/1010000010126010
2,https://blog.csdn.net/zhou_xiao_cheng/article/details/52759632

以上是关于ES6中表达export default const是无效的的主要内容,如果未能解决你的问题,请参考以下文章

ES6导入导出import | export | export default-使用案例

ES6中export与export default的区别

ES6 中 export ,export default 区别

es6 export 和 export default区别

ES6中export , export default , import模块系统总结

JavaScript ES6中export及export default的区别