前提・実現したいこと
BasicInfomation.vueコンポーネントに別ファイルで作成したdefinition.jsというJSファイルの配列データにアクセスし
v-forで生年月日を入力するoptionを作りたい。
該当のソースコード
↓definition.js
javascript
1const years = []; 2const months = []; 3const days = []; 4 5function createYearsOption() { 6 for (let y = 2020; y > 1929; y--) { 7 if (y > 2018) { 8 years.push({ year: y, label: `${y} (令和${y - 2018}年)` }); 9 } else if (y > 1988) { 10 years.push({ year: y, label: `${y} (平成${y - 1988}年)` }); 11 } else if (y > 1925) { 12 years.push({ year: y, label: `${y} (昭和${y - 1925}年)` }); 13 } 14 } 15} 16 17function createMounthsOption() { 18 for (let i = 1; i <= 12; i++) { 19 months.push(i); 20 } 21} 22 23function createDaysOption() { 24 for (let i = 1; i <= 31; i++) { 25 days.push(i); 26 } 27} 28 29export default { createYearsOption, createMounthsOption, createDaysOption }
↓BasicInfomation.vue
vue
1<template> 2 <div> 3 <div class="questionnaire-box"> 4 <div class="questionnaire-box-header"> 5 <span>STEP1</span> 6 <h4>お客様の情報を入力してください</h4> 7 </div> 8 9 <form class="gender-selection-box"> 10 <p>性別</p> 11 <input type="radio" name="gender" value="男" id="men" /> 12 <label for="men">男</label> 13 <input type="radio" name="gender" value="女" id="women" /> 14 <label for="women">女</label> 15 </form> 16 17 <form class="birthday-box"> 18 <p>生年月日</p> 19 20 <select id="birthday-year"> 21 <option v-for="yearnumber in years" :key="yearnumber.year">{{ yearnumber.label }}</option> 22 </select>年 23 <select id="birthday-month"></select>月 24 <select id="birthday-day"></select>日 25 </form> 26 </div> 27 28 <router-link 29to="/questions" tag="button" id="next-btn" class="next-btn">次へ進む</router-link> 30 </div> 31</template> 32 33 34<script> 35import definition from './definition'; 36 37export default { 38 data() { 39 return { 40 years: [], 41 months:[], 42 days:[] 43 }; 44 }, 45 methods: { 46 test() { 47 definition.createYearsOption(); 48 definition.createMounthsOption(); 49 definition.createDaysOption(); 50 } 51 }, 52 mounted: function() { 53 this.test(); 54 } 55}; 56</script>
外部のJSファイルの配列データをv-forを使い生年月日を選択するoptionの作成をしたく
試してみたのですが上手くいきません。
そもそもそのようなことが可能なのでしょうか?
調べてもそれらしき記事が見当たらなかったので質問させていただきました。
ご教授いただければ幸いです????♂️
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。