Vue 中 export default 和 module.exports

Posted 梅里之巅

tags:

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

export default 服从 ES6 的规范,补充:default 其实是别名

module.exports 服从CommonJS 规范

 

一般导出一个属性或者对象用 export default 

一般导出模块或者说文件使用 module.exports

 

以上来自网络,不一定准确,有待进一步确认。

 

附带:

import from 服从ES6规范,在编译器生效

require 服从ES5 规范,在运行期生效

目前 vue 编译都是依赖label 插件,最终都转化为ES5.

以上是关于Vue 中 export default 和 module.exports的主要内容,如果未能解决你的问题,请参考以下文章

关于 vue中 export default 和 new Vue({})

关于VUE中 import export 和 export default 的注意问题

关于VUE中 import 、 export 和 export default 的注意问题

vue export default

VUE中使用的插件有哪些?为什么,不能自动补全,script,methods和export default?

说明与比较:new Vue() 和 export default {}