<template> <v-layout row wrap justify-center> <v-flex xs5 mt-5> <v-card> <v-card-title> <v-flex xs12 class="text-center"> 支出フォーム </v-flex> </v-card-title> <v-divider></v-divider> <v-card-text> <v-form ref="test_form"> <v-text-field v-model="expenditure.price" label="支出額:" :rules="[numberRules.required,numberRules.regex]"> <template v-slot:append>円</template> </v-text-field> <v-radio-group row labe
