ES6 import export
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 import export相关的知识,希望对你有一定的参考价值。
?????????const exp fun from ?????? ?????? cti class ***
ES6?????????????????????????????????
export
????????????
??????export??????????????????????????????
export function add(x ,y ){return x+y;} export const sqrt = Math.sqrt;
?????????????????????????????????
import {adc, sqrt} from ***.js
add(1,2)
???????????????????????????
import * as abc from xxx.js
abc.add(1,2)
????????????
??????deault?????????
export default function(){...}
????????????????????????????????????????????????????????????????????????
import abc from xxx.js
??????
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
import ttt, {adc, sqrt} from ***.js
??????????????????????????????as???????????????????????????????????????
import ttt, {adc as abc1, sqrt} from ***.js
??????????????????
export {
abc,
bcd as bcd1
};
??????????????????????????????
以上是关于ES6 import export的主要内容,如果未能解决你的问题,请参考以下文章
[ES6]import 与export的用法 ,export 与export default 的 区别 以及用法
export,import, es6 export, es6 import