mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-07 22:16:16 +08:00
fix: 初始化版本号变量为字符串类型,默认为空字符串 (#4003)
This commit is contained in:
parent
66a451fc1f
commit
d0bb07796b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue