美文网首页
import & export

import & export

作者: Jalon | 来源:发表于2016-03-29 13:27 被阅读0次

    在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';
    

    相关文章

      网友评论

          本文标题:import & export

          本文链接:https://www.haomeiwen.com/subject/mzlslttx.html