export 和export default 的区别

export 可以导出多个命名模块,例如:

export const str = 'hello world'
export function f(a){
  return a+1
}

// 对应的引入方式:
import { str, f } from 'demo1'

export default 只能导出一个默认模块,这个模块可以匿名,例如:

export default {
a: 'hello',
b: 'world'
}

//对应的引入方式:
import obj from 'demo1'
posted @ 2020-05-22 10:44  Sun~_~  阅读(122)  评论(0编辑  收藏  举报