Vueのv-forディレクティブを使用した選択オプションの生成
配列を使用した選択オプションの生成:<template> <select> <option v-for="option in options" :value="option">{{ option }}</option> </select> </template> <script> export default { data() { return { options: ['オプション1', 'オプション2', 'オプション3'] } } } </script>>>More