• 1.1.1 7d9e691232

    v1.1.1 Stable

    yutent released this 2023-05-18 16:34:13 +08:00 | 52 commits to master since this release

    • 兼容export xx from yy 语法 (详情看下面的示例)
    // 这里的 变量foo, 在当前 js 文件中, 不可使用的 (原生的语法是这么定的)
    export { foo } from 'xxx'
    
    // 会编译为 (纯粹为了照顾其他构建工具一直以来培养的不良习惯)
    import { foo } from 'xxx'
    export { foo }
    
    
    Downloads