Showing
1 changed file
with
1 additions
and
2 deletions
| ... | ... | @@ -84,7 +84,7 @@ |
| 84 | 84 | </div> |
| 85 | 85 | </template> |
| 86 | 86 | <script setup lang="ts"> |
| 87 | - import { ref, unref, reactive, onMounted, toRefs } from 'vue'; | |
| 87 | + import { ref, unref, reactive, onMounted, toRefs, nextTick } from 'vue'; | |
| 88 | 88 | import ace from 'ace-builds'; |
| 89 | 89 | import { Card, Button, Tooltip } from 'ant-design-vue'; |
| 90 | 90 | import 'ace-builds/src-noconflict/theme-chrome'; // 默认设置的主题 |
| ... | ... | @@ -96,7 +96,6 @@ |
| 96 | 96 | import { findDictItemByCode } from '/@/api/system/dict'; |
| 97 | 97 | import { QuestionCircleOutlined } from '@ant-design/icons-vue'; |
| 98 | 98 | import { defaultTitle } from './config.data'; |
| 99 | - import { nextTick } from 'process'; | |
| 100 | 99 | |
| 101 | 100 | defineEmits(['register']); |
| 102 | 101 | const props = defineProps({ | ... | ... |