m***@163.com
m***@163.com
  • 发布:2024-03-16 10:47
  • 更新:2024-03-16 11:24
  • 阅读:183

textarea在app中无法点击的问题

分类:uni-app
<textarea :value="comments" maxlength="-1" placeholder="说说吧..." auto-height show-confirm-bar="true" @input="inputComments">
</textarea>

这种都无法电机,点击之后键盘没有弹出

2024-03-16 10:47 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

刚试了,可以的,你试试

<template>  
    <view>  
        <textarea :value="comments" maxlength="-1" placeholder="说说吧..." auto-height :show-confirm-bar="true"  
            @input="inputComments"> </textarea>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                comments: ''  
            }  
        },  
        methods: {  
            inputComments(e){  
                console.log(e)  
            }  
        }  
    }  
</script>

要回复问题请先登录注册