Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@codemirror/lang-php": "^6.0.1",
"@codemirror/language": "^6.10.2",
"@codemirror/legacy-modes": "^6.4.0",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@element-plus/icons-vue": "^1.1.4",
"@highlightjs/vue-plugin": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/file-management/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@
</template>

<script setup lang="ts">
import { nextTick, onMounted, reactive, ref, computed } from '@vue/runtime-core';
import { nextTick, onMounted, reactive, ref, computed } from 'vue';
import {
GetFilesList,
GetFileContent,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/ssh/log/log.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

<script setup lang="ts">
import { dateFormat } from '@/utils/util';
import { onMounted, reactive, ref } from '@vue/runtime-core';
import { onMounted, reactive, ref } from 'vue';
import { loadSSHLogs } from '@/api/modules/host';

const loading = ref();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/log/login/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
import ConfirmDialog from '@/components/confirm-dialog/index.vue';
import { dateFormat } from '@/utils/util';
import { cleanLogs, getLoginLogs } from '@/api/modules/log';
import { onMounted, reactive, ref } from '@vue/runtime-core';
import { onMounted, reactive, ref } from 'vue';
import i18n from '@/lang';
import { MsgSuccess } from '@/utils/message';
import { useRouter } from 'vue-router';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/log/operation/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
import ConfirmDialog from '@/components/confirm-dialog/index.vue';
import { dateFormat } from '@/utils/util';
import { cleanLogs, getOperationLogs } from '@/api/modules/log';
import { onMounted, reactive, ref } from '@vue/runtime-core';
import { onMounted, reactive, ref } from 'vue';
import i18n from '@/lang';
import { MsgSuccess } from '@/utils/message';
import { GlobalStore } from '@/store';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/supervisor/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@

<script setup lang="ts">
import SuperVisorStatus from './status/index.vue';
import { ref } from '@vue/runtime-core';
import { ref } from 'vue';
import ConfigSuperVisor from './config/index.vue';
import { computed, onMounted } from 'vue';
import Create from './create/index.vue';
Expand Down
Loading