Appearance
v-for指令必须有效
v-for
必须遍历可以迭代的对象,必须指定key属性
key
要不然在运行时就会报错
<template> <div v-for /> </template>
<template> <div v-for="item in list" :key="item.id" /> </template>