🚨 fix lint

This commit is contained in:
chaos-zhu 2024-08-05 10:32:39 +08:00
parent d175aeb253
commit 736029d402
4 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,6 @@
> [!WARNING]
> 初次部署EasyNode登录系统后务必记得修改默认账户密码 `admin/admin`
> [!WARNING]
> 强烈建议使用 **iptables****fail2ban** 等安全服务限制IP访问谨慎暴露面板服务到公网。
<!-- > [!NOTE]

View File

@ -3,7 +3,7 @@
</template>
<script setup>
import { ref, onMounted, computed, onBeforeUnmount, getCurrentInstance, defineEmits } from 'vue'
import { ref, onMounted, computed, onBeforeUnmount, getCurrentInstance } from 'vue'
import { Terminal } from '@xterm/xterm'
import '@xterm/xterm/css/xterm.css'
import { FitAddon } from '@xterm/addon-fit'

View File

@ -142,7 +142,7 @@
</template>
<script setup>
import { ref, defineEmits, computed, defineProps, getCurrentInstance, watch, onMounted, onBeforeUnmount } from 'vue'
import { ref, computed, getCurrentInstance, watch, onMounted, onBeforeUnmount } from 'vue'
import { ArrowDown } from '@element-plus/icons-vue'
import TerminalTab from './terminal-tab.vue'
import InfoSide from './info-side.vue'

View File

@ -52,7 +52,7 @@
</template>
<script setup>
import { ref, computed, onActivated, getCurrentInstance, reactive, nextTick, defineEmits } from 'vue'
import { ref, computed, onActivated, getCurrentInstance, reactive, nextTick } from 'vue'
import { useRoute } from 'vue-router'
import Terminal from './components/terminal.vue'
import HostForm from '../server/components/host-form.vue'