jichoi / lms_front star
dajeong 2024-08-12
240812 정다정 AI프롬포트 지문페이지에 추가
@fac02315465f12249bc6d97be0543e5b71f65997
client/views/pages/main/Chapter/Chapter1.vue
--- client/views/pages/main/Chapter/Chapter1.vue
+++ client/views/pages/main/Chapter/Chapter1.vue
@@ -17,10 +17,12 @@
             </div>
             <div class="next-btn"  @click="goToPage('Chapter1_1')"><img src="../../../../resources/img/right.png" alt=""></div>
         </div>
+        <TextToImage/>
     </div>
 </template>
 
 <script>
+import TextToImage from '../../../component/TextToImage.vue';
 export default {
     data() {
         return {
@@ -38,6 +40,7 @@
 
     },
     components: {
+        TextToImage : TextToImage,
     },
     mounted() {
     }
client/views/pages/main/Chapter/Chapter1_2.vue
--- client/views/pages/main/Chapter/Chapter1_2.vue
+++ client/views/pages/main/Chapter/Chapter1_2.vue
@@ -49,10 +49,12 @@
       </div>
       <div class="next-btn" @click="goToPage('Chapter1_3')"><img src="../../../../resources/img/right.png" alt=""></div>
     </div>
+    <TextToImage/>
   </div>
 </template>
 
 <script>
+import TextToImage from '../../../component/TextToImage.vue';
 export default {
   data() {
     return {
@@ -70,6 +72,7 @@
 
   },
   components: {
+    TextToImage : TextToImage
   },
   mounted() {
     const textArea = this.$refs.textArea;
client/views/pages/main/Chapter/Chapter1_3.vue
--- client/views/pages/main/Chapter/Chapter1_3.vue
+++ client/views/pages/main/Chapter/Chapter1_3.vue
@@ -20,10 +20,12 @@
             </div>
             <div class="next-btn"  @click="goToPage('Dashboard')"><img src="../../../../resources/img/right.png" alt=""></div>
         </div>
+        <TextToImage/>
     </div>
 </template>
 
 <script>
+import TextToImage from '../../../component/TextToImage.vue';
 export default {
     data() {
         return {
@@ -41,6 +43,7 @@
 
     },
     components: {
+        TextToImage : TextToImage
     },
     mounted() {
     }
Add a comment
List