合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
## 官方文档: https://uniapp.dcloud.io/component/input.html ## 代码案例: ``` <form @submit="" @reset=""> <text>用户名:{{username}}</text> <input class="uni-input" @input="input1" type="text" value="" /> </form> ``` ``` <script> export default { data() { return { username:'' } }, onLoad() { }, methods: { input1(e){ console.log(e.detail.value); //打印input的值 this.username=e.detail.value; //赋值给username } } } </script> <style> input{ background-color:#999799; } </style> ```