Browse Source

fix: 初始化版本号变量为字符串类型,默认为空字符串 (#4003)

pull/4023/head
QuentinHsu 9 months ago committed by GitHub
parent
commit
d0bb07796b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      frontend/src/components/system-upgrade/index.vue

2
frontend/src/components/system-upgrade/index.vue

@ -77,7 +77,7 @@ import { GlobalStore } from '@/store';
import { ElMessageBox } from 'element-plus';
const globalStore = GlobalStore();
const version = ref();
const version = ref<string>('');
const loading = ref(false);
const drawerVisible = ref(false);
const upgradeInfo = ref();

Loading…
Cancel
Save