XiaofengZeng / kite-nest

Warehouse management system based on geographic information.
MIT License
1 stars 0 forks source link

Vuex的使用方式无法持续性管理用户信息 #15

Open XiaofengZeng opened 2 years ago

XiaofengZeng commented 2 years ago

description:

当前用户鉴权使用Vuex进行管理,但只是在actions中进行逻辑验证,并在mutations中将验证信息写入store中,同时写入浏览器的localStorage中。 当浏览器刷新后,因为浏览器的localStorage存储了原先的验证信息,将会自动通过鉴权,并跳转至主页。但Vuex将被重置,验证信息将被清空。 这样不利于后续持续性管理用户信息。