selectboxで選択した値に紐づくidをvuexに保存したいです。
現在イベントで引数を指定しましたがundifindeになってしましいます。
どこが間違っているのかどなたかご存じでしたらご教示お願い致します。
javascript
1export const state = () => ({ 2 items: [{"id": "1", "urlname": "google"}], 3 selectedUrlId: [] 4}) 5 6export const mutations = ({ 7 setItems (state, payload) { 8 state.items = payload 9 }, 10setSelectedItem (state, payload) { 11 state.selectedUrlId = payload 12 } 13}) 14
<template> <div> <select @change="updateSelect(item.id)"> <option v-for="(item, index) in items" :key="index" >{{ item.urlname}}</option> </select> </div> </template> <script> export default { data () { return { } }, computed: { items () { return this.$store.state.items } }, methods: { updateSelect (id) { console.log('id,event', id) //id ←undifinedになります。 this.$store.commit('setSelectedItem', id) } } } </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。