当前位置: 首页 > 工具软件 > wheelnav.js > 使用案例 >

解决three.js引用时,有些构造函数引用报错的问题

翟曦之
2023-12-01

报错:

[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';

 

 类似资料: