Vue的列表渲染和双向绑定(初学vue之v-for以及v-model)
<template>
<div>
<ul>
<li v-for="(item, index) in items" :key="index">
<input v-model="items[index]" />
{{ item }}
</li>
</ul>
<button @click="addItem">Add Item</button>
</div>
</template>
<script>
export default {
data() {
return {
items: ['Item 1', 'Item 2', 'Item 3']
};
},
methods: {
addItem() {
this.items.push(`Item ${this.items.length + 1}`);
}
}
};
</script>
这段代码展示了如何在Vue中使用v-for进行列表渲染,并使用v-model实现对列表中每个元素的双向绑定。用户可以编辑列表中的每个条目,并且点击按钮会添加新的条目到列表中。这是学习Vue基础时的一个常见示例。
评论已关闭