当我通过
在Quasar Framework项目中安装gsap时npm install gsap
并通过以下方式导入index.vue:
<script>
import {TweenMax} from "gsap";
我可以在方法中引用TweenLite:
methods: {
draw() {
TweenLite.to("#c1", 1, {opacity:0.5, rotation:45});
但是当我尝试引用TweenMax时,我收到错误
TweenMax.to("#c1", 1, {opacity:0.5, rotation:45});
Vue warn]: Error in event handler for "click":
"TypeError: Cannot read property 'to' of undefined"
知道为什么TweenMax没有解决?看起来所有模块都在node_modules / gsap ...
下可用感谢