diff --git a/src/views/VoucherCreate.vue b/src/views/VoucherCreate.vue
index b1284e4b74d87805f84163cc630e71505804c245..372e8665ada02a823f8e86b59bf1866647783adf 100644
--- a/src/views/VoucherCreate.vue
+++ b/src/views/VoucherCreate.vue
@@ -18,6 +18,10 @@
               label="이용횟수"
               v-model="voucher.quantity"
             ></v-text-field>
+            <v-text-field
+              label="가격"
+              v-model="voucher.price"
+            ></v-text-field>
           </v-card-text>
           <v-card-actions>
             <v-spacer></v-spacer>
@@ -66,6 +70,7 @@ export default {
         title: '',
       },
       quantity: '',
+      price: '',
     },
   }),
 
diff --git a/src/views/VoucherDetail.vue b/src/views/VoucherDetail.vue
index f9e83ad94c872acb69a16524093035a43652a716..557b8969ee67deb486d6fc4331cc6ae508f68b46 100644
--- a/src/views/VoucherDetail.vue
+++ b/src/views/VoucherDetail.vue
@@ -25,6 +25,10 @@
               label="이용횟수"
               v-model="voucher.quantity"
             ></v-text-field>
+            <v-text-field
+              label="가격"
+              v-model="voucher.price"
+            ></v-text-field>
             <v-text-field
               label="등록 시각"
               readonly
@@ -85,6 +89,7 @@ export default {
         title: '',
       },
       quantity: '',
+      price: '',
       createdAt: '',
       updatedAt: '',
     },
diff --git a/src/views/VoucherList.vue b/src/views/VoucherList.vue
index 8e756beb994e6aa960db9615c278010b965db83a..09a21b92e20c76aa863ad5da717cc7864b821847 100644
--- a/src/views/VoucherList.vue
+++ b/src/views/VoucherList.vue
@@ -98,6 +98,10 @@ export default {
           text: '이용횟수',
           value: 'quantity',
         },
+        {
+          text: '가격',
+          value: 'price',
+        },
         {
           text: '등록 시각',
           value: 'createdAt',