美文网首页
ES6 Traceur转码 记录

ES6 Traceur转码 记录

作者: 仰望天空的人 | 来源:发表于2021-06-23 18:29 被阅读0次

    Traceur允许将ES6代码直接插入网页。首先,必须在网页头部加载Traceur库文件。

    <script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
    <script src="https://google.github.io/traceur-compiler/bin/BrowserSystem.js"></script>
    <script src="https://google.github.io/traceur-compiler/src/bootstrap.js"></script>
    
    <script type="module">
      import './Greeter.js';
    </script>

    相关文章

      网友评论

          本文标题:ES6 Traceur转码 记录

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