<view class="input-warp">
<textarea ref="chatInput" class="chat-input" v-model="inputText" :cursor-spacing="20" :auto-height="true"
confirm-type="send" maxlength="150" />
</view>
css
.input-warp {
overflow: hidden;
background-color: #ffaaff;
border-radius: 5px;
padding: 8px;
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
}
.chat-input {
background-color: #FFF;
overflow: hidden;
flex: 1;
padding: 0;
line-height: 22px;
}
棒榜 (作者)
我知道,问题是他界面上多出底部的高度
2023-03-16 09:34