Skip to content

Commit 12ad08a

Browse files
authored
chore: fix phantom dependency issue (#7279)
Signed-off-by: Ryan Wang <[email protected]>
1 parent 0c000a4 commit 12ad08a

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"@codemirror/lang-php": "^6.0.1",
2626
"@codemirror/language": "^6.10.2",
2727
"@codemirror/legacy-modes": "^6.4.0",
28+
"@codemirror/state": "^6.4.1",
2829
"@codemirror/theme-one-dark": "^6.1.2",
2930
"@element-plus/icons-vue": "^1.1.4",
3031
"@highlightjs/vue-plugin": "^2.1.0",

frontend/src/views/host/file-management/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@
468468
</template>
469469

470470
<script setup lang="ts">
471-
import { nextTick, onMounted, reactive, ref, computed } from '@vue/runtime-core';
471+
import { nextTick, onMounted, reactive, ref, computed } from 'vue';
472472
import {
473473
GetFilesList,
474474
GetFileContent,

frontend/src/views/host/ssh/log/log.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
<script setup lang="ts">
6262
import { dateFormat } from '@/utils/util';
63-
import { onMounted, reactive, ref } from '@vue/runtime-core';
63+
import { onMounted, reactive, ref } from 'vue';
6464
import { loadSSHLogs } from '@/api/modules/host';
6565
6666
const loading = ref();

frontend/src/views/log/login/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
import ConfirmDialog from '@/components/confirm-dialog/index.vue';
7070
import { dateFormat } from '@/utils/util';
7171
import { cleanLogs, getLoginLogs } from '@/api/modules/log';
72-
import { onMounted, reactive, ref } from '@vue/runtime-core';
72+
import { onMounted, reactive, ref } from 'vue';
7373
import i18n from '@/lang';
7474
import { MsgSuccess } from '@/utils/message';
7575
import { useRouter } from 'vue-router';

frontend/src/views/log/operation/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
import ConfirmDialog from '@/components/confirm-dialog/index.vue';
105105
import { dateFormat } from '@/utils/util';
106106
import { cleanLogs, getOperationLogs } from '@/api/modules/log';
107-
import { onMounted, reactive, ref } from '@vue/runtime-core';
107+
import { onMounted, reactive, ref } from 'vue';
108108
import i18n from '@/lang';
109109
import { MsgSuccess } from '@/utils/message';
110110
import { GlobalStore } from '@/store';

frontend/src/views/toolbox/supervisor/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156

157157
<script setup lang="ts">
158158
import SuperVisorStatus from './status/index.vue';
159-
import { ref } from '@vue/runtime-core';
159+
import { ref } from 'vue';
160160
import ConfigSuperVisor from './config/index.vue';
161161
import { computed, onMounted } from 'vue';
162162
import Create from './create/index.vue';

0 commit comments

Comments
 (0)