king2088 / vue-3d-loader

VueJS and threeJS 3d viewer plugin
https://king2088.github.io/vue-3d-loader-docs
MIT License
222 stars 38 forks source link

对了,大佬,就是我通过ref查看内部方法属性这些,为什么打印出来是undefined啊,比如我想看看场景里面的信息,但是undefined,不知道为什么 #106

Closed FengIsTao closed 3 months ago

FengIsTao commented 6 months ago

image

FengIsTao commented 6 months ago

可以通过ref获取里面的scene,camera这些嘛?

king2088 commented 6 months ago

通过ref可能无法获取到其中的内容,不建议这样使用,如果要得到场景中的数据,可以通过load事件获取。因为场景之类的变量使用的是非响应式变量,所以无法通过ref获取

FengIsTao commented 6 months ago

嗯嗯,谢谢作者大大,我试试