ES6 export
Posted chillaxyw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 export相关的知识,希望对你有一定的参考价值。
export 可以输出一个模块,可以是变量或者方法。
export 一个变量名时 必须是 export {xxx},xxx 是方法名或者变量名,import 时必须是 import {xxx} from yyy
export default xxx 时不用{} ,import 时可以直接写 import xxx
每个模块中只允许有一个export default
以上是关于ES6 export的主要内容,如果未能解决你的问题,请参考以下文章
[ES6]import 与export的用法 ,export 与export default 的 区别 以及用法