推拿小程序前端代码仓库
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.
 
 
 

38 lines
629 B

<template>
<uv-input
:value="value"
@input="$emit('input', $event)"
:placeholder="placeholder"
:placeholderStyle="{
color: '#999999',
fontSize: '28rpx',
}"
:customStyle="{
backgroundColor: 'transparent',
padding: '0 20rpx 0 0',
boxSizing: 'border-box',
fontSize: '28rpx',
border: 'none',
}"
inputAlign="right"
></uv-input>
</template>
<script>
export default {
props: {
value: {
default: null
},
placeholder: {
type: String,
default: '请输入'
},
},
data() {
return {
}
},
}
</script>