1. 程式人生 > >v-for報"Elements in iteration expect to have 'v-bind:key' directives"錯誤的解決方案

v-for報"Elements in iteration expect to have 'v-bind:key' directives"錯誤的解決方案

一、 問題日誌

  ✘  https://google.com/#q=vue%2Frequire-v-for-key  Elements in iteration expect to have 'v-bind:key' directives  
  src/components/home.vue:36:13
              <li v-for="year in objective">
               ^

二、 問題原因

在vue新版本中,v-for迭代語法有變動,需要加入key值。

三、 解決方案

v-for="year in objective"

後面加上key值定義,注意有個空格

v-for="year in objective" :key="year.num"

四、 參考文獻