// 作用域问题// 别的文件声明过 a 变量,所以这里会提示不能重复声明// const a = 12const a = 12// 这里用export 导出一下会形成一个模块作用域,也可以解决变量重复的问题export {}