dataのkeyの数繰り返したいです。
v-forの使い方は合っていると思うのですが、テーブルにするとProperty or method "key" is not defined on the instance
のエラーになります。
haml
1%table 2 %div{"v-for": "(value,key) in user"} 3 %tr 4 %th 5 {{key}} 6 %td 7 {{value}}
javascript
1dataObject = { 2 attribute: { 3 name: "山田" 4 age: 19, 5 gender: "男", 6 } 7 } 8 9var vue_model = new Vue({ 10 el: '#vue-root', 11 data: dataObject, 12})
テーブルを使わないとエラーは起こりませんでした。
動きは問題ない
haml
1%table 2 %div{"v-for": "(value,key) in user"} 3 {{key}} 4 {{value}}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。