首先v-bind:是绑定属性的意思,也可以简写为:key="item"。v-bind 初探:它是一个 vue 指令,用于绑定 html 属性,如下: html属性不能使用双大括号形式绑定,只能使用v-bind指令 ... var vm = new Vue({ el: '#app', data: { title: 'title content' } }); ...