Commit 18b2b1a6 18b2b1a63b9c0e94c7bb6a29a0d82ec1658fdf4b by 杨俊

fix(develop): 修复报错

1 parent 77ccf8c2
...@@ -14,7 +14,7 @@ const visible = useLocalStorage('token', '', {}) ...@@ -14,7 +14,7 @@ const visible = useLocalStorage('token', '', {})
14 const bodyStyle: StyleValue = {textAlign: 'center', display: 'flex', flexDirection: 'column', alignItems: 'center'} 14 const bodyStyle: StyleValue = {textAlign: 'center', display: 'flex', flexDirection: 'column', alignItems: 'center'}
15 15
16 const loginCode = ref<string>('') 16 const loginCode = ref<string>('')
17 const loginEvent = ref<UseEventSourceReturn>() 17 const loginEvent = ref<any>()
18 const loginEncryptCode = computed((): string => 18 const loginEncryptCode = computed((): string =>
19 Base64.encode(JSON.stringify({type: 'loginCode', data: loginCode.value}))) 19 Base64.encode(JSON.stringify({type: 'loginCode', data: loginCode.value})))
20 20
......