MXLK

export vs export default

2018-04-09

在ES6中,export 和 export default都可以用于导出常量、函数、模块、组件和文件等,你可以在其它文件或模块中通过import+(常量 | 函数 | 文件 | 模块)名的方式,将其导入,以便能够对其进行使用,但在一个文件或模块中,export、import可以有多个,export default仅有一个。

export使用

1
2
3
4
5
export const INCREMENT = "increment"
export function add(n1, n2){
return n1 + n2
}

导入方式

1
import {increment, add} from 'xxx' //xxx为导出模块的文件路径

export default使用

1
export default const DECREMENT = 'decrement'

导入方式

1
import decrement from 'xxx' //xxx为导出模块的文件路径
Tags: es6