1.首先是系统首次运行会跳转http://localhost:8090/console/setup页面,输入用户名之后无法点击初始化按钮,控制台报错:
Uncaught TypeError: Cannot perform 'get' on a proxy that has been revoked
at Object.listener (index.mjs:112:18)
at index.mjs:57:29
at Array.forEach (<anonymous>)
at Object.emitter [as _e] (index.mjs:55:39)
at emit$1 (index.mjs:180:13)
at Proxy.<anonymous> (index.mjs:1120:32)
at commit (index.mjs:1286:10)
临时解决方案:修改console/src/views/system/Setup.vue文件formState内容
const formState = ref<SystemInitializationRequest>({
siteTitle: "test",
username: "test",
password: "test",
email: "test@163.com",
});