10

使用 Sappers 导出功能来构建静态站点,我希望能够使用 JavaScript 库,如Conversational FormGSAP。尝试将它们添加到client.js或我的组件中,我无法访问该window对象。

我如何最好地解决这个问题?

4

1 回答 1

16

标准方法是将import这些库放入您的组件中:

<script>
  import { TweenMax, Power2, TimelineLite } from 'gsap';

  export default {
    oncreate() {
      // use GSAP in here, or in custom methods
    }
  };
</script>
于 2018-03-20T19:27:45.917 回答