mine-coupon.vue
395 字节
<template>
<view class="">
<uv-tabs :list="list" @click="click" lineColor="#23B1B1" :activeStyle="{fontWeight:700,color:'#000'}"></uv-tabs>
</view>
</template>
<script setup>
import { onShow, onLoad } from '@dcloudio/uni-app'
import { ref } from 'vue'
const list = ref([{
name: '全部',
}, {
name: '待开奖',
}, {
name: '已开奖'
}])
</script>
<style lang="scss">
</style>