vue.jsで画面開発を行っています。
【やりたいこと】
rank.vueの画面を開いたときに、rank_store.jsのactionsでAPIにnameIdを引数として渡したい。
※APIはJson形式
【ソース】
■rank.vue <script> .... created() { this.$store.dispatch('rank_store/getRank') }, </script>
■rank_store.js export const actions = { async getTeamRanking(context) { //ここでnameIdを引数として渡したい //URLはhttp://localhost:3001/rank } }
結構悩んでるのですが、解決できないので、教えていただきたいです。
あなたの回答
tips
プレビュー