我正在使用vuejs,我想知道如何控制输入(必要时添加禁用的属性)。有什么办法可以在vuejs中动态添加属性?在我的Textfield组件下面:
<template>
<input type="text" placeholder="{{ placeholder }}" v-model="value">
</template>
<script>
export default {
props: {
disabled: {type: Boolean, default: false},
placeholder: {type: String, default: ""},
value: {twoWay: true, default: ""}
}
}
</script>
用法:
<textfield placeholder="Name" value.sync="el.name" :disabled="true"></textfield>
我试图弄清楚如何在使用Vue v-for循环时从数组值动态设置html标签的属性。
我要显示的是:
例
每个div都有一个输入标签,并在用户输入值时更改值