This commit is contained in:
2025-03-12 11:39:31 +08:00
parent b8a44a2716
commit 55954a4a9b
125 changed files with 30973 additions and 30045 deletions

View File

@@ -1,34 +1,36 @@
<template>
<view>
<page-head :title="title"></page-head>
<view>
<page-head :title="title"></page-head>
<view class="uni-title uni-common-pl">输入区域高度自适应不会出现滚动条</view>
<view class="uni-textarea">
<textarea @blur="bindTextAreaBlur" auto-height />
</view>
<view class="uni-title uni-common-pl">占位符字体是红色的textarea</view>
<view class="uni-textarea">
<textarea placeholder-style="color:#F76260" placeholder="占位符字体是红色的"/>
</view>
</view>
<view class="uni-title uni-common-pl"
>输入区域高度自适应不会出现滚动条</view
>
<view class="uni-textarea">
<textarea @blur="bindTextAreaBlur" auto-height />
</view>
<view class="uni-title uni-common-pl">占位符字体是红色的textarea</view>
<view class="uni-textarea">
<textarea
placeholder-style="color:#F76260"
placeholder="占位符字体是红色的"
/>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'textarea',
focus: false
}
},
methods: {
bindTextAreaBlur: function (e) {
console.log(e.detail.value)
}
}
}
export default {
data() {
return {
title: "textarea",
focus: false,
};
},
methods: {
bindTextAreaBlur: function (e) {
console.log(e.detail.value);
},
},
};
</script>
<style>
</style>
<style></style>