裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
592 B

<template>
<view class="number-box">
<uv-number-box
:value="value"
@input="$emit('input', value)"
:min="1"
integer
button-size="60rpx"
bgColor="#F3F3F3"
color="#000000"
></uv-number-box>
</view>
</template>
<script>
export default {
props: {
value: {
default: null
},
min: {
type: Number,
default: 1,
}
},
data() {
return {
}
},
}
</script>
<style scoped lang="scss">
.number-box {
background-color: #F3F3F3;
border-radius: 30rpx;
overflow: hidden;
}
</style>