king2088 / vue-3d-loader

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

vue3+js,使用"vue-3d-loader": "^2.1.5"版本无法加载模型 #49

Closed SLN178716 closed 1 year ago

SLN178716 commented 1 year ago

image image

king2088 commented 1 year ago

image image

请提供一下vue3的版本号

SLN178716 commented 1 year ago

版本是“3.2.38” image

king2088 commented 1 year ago

经过测试,并未发现有你所描述的warn出现,但是根据你的warn的提示,看似是生命周期的问题。如果你的页面中存在生命周期onMounted等声明周期在setup中,请将跟生命周期有关的函数都写到script的前面,如下:

<script setup>
import { onMounted } from 'vue'
// 将onMounted等生命周期函数,置于import下
onMounted(() => {....})
// 其它代码
</script>
king2088 commented 1 year ago

超过7天无回应,关闭