<template>
<view>
<textarea v-model="value" auto-height :cursor-spacing="100" :adjust-position="true" placeholder="测试 placeholder" style="border: 1px solid #ccc; color: #333;" />
<button @click="send">发送</button>
</view>
</template>
<script>
export default {
data() {
return {
value: ''
}
},
methods: {
send() {
this.value = ''
}
}
}
</script>
<style>
</style>
0 个回复