:class="['textarea_content_right']"
:contenteditable="true"
@
input
="changeText($
event
)"
v-text= "currentValue"
data() {
return...
在Android中有多种方法可以用来拦截用户与应用交互产生的
事件
。如果要处理用户交互触发的
事件
,比较合适的方式是在用户交互的特定View对象中捕获
事件
。View类提供了处理的方法。
在用来构建布局的各种View类中,你可能注意到一些看起来可用于UI
事件
的公共回调方法。当这些对象上产生各自的行为时,Android框架就会调用相应的回调方法。举例来说,当View(比如按钮)被
vue
中
input
标签的使用
普通
input
标签
<
input
type="text" value="" placeholder="placeholder" name="name" @
input
="print($
event
.target.value)">
type: 规定
input
元素的类型;
text: 标识文本输入框
submit: 标识提交按钮
checkbox 多选框
radio 是单选框
value: 规定
input
框中的值
palceholder: 帮助用户填写输入字段的提示