From 54216198e1f9b5b883d377e0e5007fc14ae05406 Mon Sep 17 00:00:00 2001
From: Yu Sung <hwchon1234@gmail.com>
Date: Mon, 2 Jun 2025 21:44:07 +0900
Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=88=98?=
 =?UTF-8?q?=EC=A0=95=20-=20=ED=83=9C=EA=B7=B8=20=EC=88=98=EC=A0=95=20?=
 =?UTF-8?q?=EC=B6=94=EA=B0=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/views/Content/ContentList.vue | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue
index 5517850..65fad9b 100644
--- a/src/views/Content/ContentList.vue
+++ b/src/views/Content/ContentList.vue
@@ -227,6 +227,20 @@
               </v-col>
             </v-row>
           </v-card-text>
+          <v-card-text>
+            <v-row align="center">
+              <v-col cols="4">
+                태그
+              </v-col>
+              <v-col cols="8">
+                <v-text-field
+                  v-model="audio_content.tags"
+                  label="예 : #연애 #커버곡 #태그"
+                  required
+                />
+              </v-col>
+            </v-row>
+          </v-card-text>
           <v-card-text>
             <v-row align="center">
               <v-col cols="4">
@@ -784,6 +798,7 @@ export default {
       this.audio_content.is_point_available = item.isPointAvailable
       this.audio_content.is_comment_available = item.isCommentAvailable
       this.audio_content.cover_image_url = item.coverImageUrl
+      this.audio_content.tags = item.tags
       this.show_modify_dialog = true
     },
 
@@ -1058,6 +1073,10 @@ export default {
           request.price = this.audio_content.price
         }
 
+        if (this.audio_content.tags !== this.selected_audio_content.tags) {
+          request.tags = this.audio_content.tags
+        }
+
         if (this.audio_content.cover_image !== null) {
           formData.append("coverImage", this.audio_content.cover_image)
         }