解决three.js引用时,有些构造函数引用报错的问题
·
报错:
[Vue warn]: Error in mounted hook: "TypeError: __WEBPACK_IMPORTED_MODULE_0_three__.OrbitControls is not a constructor"
解决办法:
在需要引入的组件中写下:
import "three/examples/js/controls/OrbitControls"
在three/examples/js/controls/OrbitControls.js文件中加入一行
import * as THREE from 'three';
更多推荐
已为社区贡献3条内容
所有评论(0)