Browse Source

fix: 解决右侧代码过长时不缩放啥也做不了的 bug

shizhong 1 năm trước cách đây
mục cha
commit
6e5552c02e
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/views/infra/codegen/components/Preview.vue

+ 3 - 1
src/views/infra/codegen/components/Preview.vue

@@ -22,7 +22,9 @@
             :key="item.filePath"
           >
             <XTextButton style="float: right" :title="t('common.copy')" @click="copy(item.code)" />
-            <pre><code v-dompurify-html="highlightedCode(item)" class="hljs"></code></pre>
+            <el-scrollbar height="600px">
+              <pre><code v-dompurify-html="highlightedCode(item)" class="hljs"></code></pre>
+            </el-scrollbar>
           </el-tab-pane>
         </el-tabs>
       </el-card>