jichoi / lms_front star
정다정 10-14
241014 정다정 AI 이미지 생성 수정
@e6263a02095fd5a8898dd4decb6e805e299d6c3e
client/views/component/TextToImage.vue
--- client/views/component/TextToImage.vue
+++ client/views/component/TextToImage.vue
@@ -2,7 +2,7 @@
     <div class="flex justify-center align-center">
         <div class="propmt-container">
             <div class="input-conatiner">
-                <input v-model="word" @keyup.enter="startProgress(word)" />
+                <input v-model="word" @keyup.enter="startProgress(word)" placeholder="궁금한 단어를 검색해보세요!" />
                 <button @click="startProgress(word)">
                     <img src="../../resources/img/new_img/icon/search-icon.png" style="width: 52px" />
                 </button>
@@ -53,6 +53,11 @@
     methods: {
         // 상태 진행 바(progress bar)
         startProgress(word) {
+            if (!word.trim()) {
+                alert('검색할 단어를 입력해주세요.');
+                return; // 입력이 없으면 함수 종료
+            }
+
             this.modalClose = false;
 
             if (this.progressWidth == 100) {
@@ -60,8 +65,6 @@
             }
 
             if (this.progressWidth > 0) return; // 이미 진행 중이면 중복 실행 방지
-
-            this.setWord(word);
 
             const interval = 300; // 30ms
             const totalDuration = 3000; // 총 시간 : 10초
Add a comment
List