更新记录
1.0.3(2024-05-20) 下载此版本
优化
1.0.2(2024-05-08) 下载此版本
更细使用教程
1.0.1(2024-05-08) 下载此版本
更新使用教程
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
× | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.1.0 | × | 3.0.2 | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
cicigodd-model720
仅支持微信小程序
- 安装
npm i three npm i three-platformize
-
在代码中引入
demo
<template> <view class="content"> <model720 ref="model720" :src="src" :width="'100vw'" :height="'100vh'" autoRotate> </model720> </view> </template> <script> import model720 from "@/uni_modules/cicigodd-model720/components/cicigodd-model720/cicigodd-model720.vue" export default { components: { model720 }, data() { return { src: '' } }, onLoad() { }, onUnload() { // 销毁 this.$refs['model720'].dispose() }, methods: { } } </script>