vueにて生年月日のセレクトボックスを作成しているのですが、
vue
1Elements in iteration expect to have 'v-bind:key' directives
このようなエラーが出てきてしまいます。
このエラーを調べたらkeyが必要とのことなので、:key="key"と入れたのですが、
vue
1Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive
このようなエラーが出て詰まってしまいました。
エラー解決方法についてご教授お願いします
現在のコードは、
vue
1<template> 2 <div> 3 <h2>{{ msg }}</h2> 4 <p id="seibetu">-性別-</p> 5 <input type="radio" id="man" value="man" v-model="picked" /> 6 <label for="man">男性</label> 7 <input type="radio" id="woman" value="woman" v-model="picked" /> 8 <label for="woman">女性</label> 9 <p>生年月日</p> 10 <div id="selectDate"> 11 <select v-model="year" @change="get_days"> 12 <option v-for="n in 50" :value="n + 1980" :key="key"> 13 {{ n + 1980 }} 14 </option></select 15 >年 16 <select v-model="month" @change="get_days"> 17 <option v-for="n in 12" :value="n" :key="key"> 18 {{ n }} 19 </option></select 20 >月 21 <select v-model="day"> 22 <option v-for="n in days_max" :value="n" :key="key"> 23 {{ n }} 24 </option></select 25 >日 26 </div> 27 </div> 28</template>
このようになっています
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。