更新记录
1.0.3(2024-05-20) 下载此版本
优化
1.0.2(2024-05-08) 下载此版本
更细使用教程
1.0.1(2024-05-08) 下载此版本
更新使用教程
查看更多平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
× | × | - | - | × | × | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
3.0.2 | × | × | × | × | × | - | × | × | × | × |
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>