Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
学习 Vue,我正在遍历一个对象,我希望能够在每个 textarea 中显示一些内容并单独识别 textarea 以进行更新等,但是我有一个问题,因为 v-model 用标识符号填充它。
我尝试使用 {{}} 将内容直接包含在文本区域中,v-model 会覆盖它。
我的代码很简单:
textarea.text(v-model="index") | {{content.value}}
我的字段中只填写了一个数字,而我想要content.value例如
content.value
<textarea :value="textareaValue" @input="input($event.target.value)" @focus="onFocus" @blur="onBlur" >
input写作时对文本进行处理的方法在哪里。和 :value 是显示的文本(初始可以说)。
input
您可以将其包装在您的组件 my-textarea 中。只要确保在你的input方法中发出值,并设置valueprop.
value
<my-textarea v-model="parentValue" ></my-textarea>