Skip to content
On this page

commonJS 和 ES6 模块在 Vue 中混用

引入导出是否可行说明
requiremodule.exports×报错:TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
requireexport
importexport推荐使用
importmodule.exports×报错:同上

目前 node 还不支持 ES6 模块,需要用 webpack 统一模块化方案。requiremodule.exports 是 CommonJS 的引入导出模块方案,却不能在同一个文件内使用,这点很让人费解。

Released under the MIT License.