刚试了,可以的,你试试
<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>
1 个回复
喜欢技术的前端 - QQ---445849201
刚试了,可以的,你试试