v-for="(person, index) in people" 这个应该为 v-for="(index,person) in people" 吧。 索引在前,元素在后。
v-for="(person, index) in people"
这个应该为
v-for="(index,person) in people"
吧。
索引在前,元素在后。