Commit 18b2b1a6 18b2b1a63b9c0e94c7bb6a29a0d82ec1658fdf4b by 杨俊

fix(develop): 修复报错

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