在es6中,我们
export { a, b, c}
export function....
export的方式有很多
但是import的时候也要
import {firstName, lastName, year} from './profile';
用户有时候不想知道你输出的到底有啥,那么可以设置一个默认输出
export default ...
这样就可以直接引用
import profile from './profile';
但是有时,其实是没有写default的,
那么可以
import * as profile from './profile';
网友评论