更新记录
1.0.0(2025-09-03)
下载此版本
转盘demo
平台兼容性
uni-app(4.07)
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
- |
- |
- |
- |
- |
- |
- |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
md-turntable
使用方法
<template>
<!-- items:奖品 activeIndex:抽取的奖品index size:大小 -->
<md-turntable :items="items" :activeIndex="3"></md-turntable>
</template>
<script>
import iphone from "@/static/iphone.png"
import headset from "@/static/headset.png"
import redPacket from '@/static/redPacket.png'
import computer from'@/static/computer.png'
import discountCoupon from'@/static/discountCoupon.png'
export default {
data(){
return {
items: [{
text: 'iPhone',image: iphone,
},
{
text: '耳机',image: headset
},
{
text: '谢谢参与',
},
{
text: '红包',image: redPacket
},
{
text: '电脑',image: computer
},
{
text: '优惠券',image: discountCoupon
},
]
}
}
}
</script>