diff --git a/src/App.vue b/src/App.vue index e644922..f738cc4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -23,10 +23,12 @@ export default { }, }; }, - mounted(){ - - - } + mounted() { + setTimeout(async () => { + let msg1 = await this.$api.toLogin.frimLogin(); + localStorage.setItem("MSSM-LIAONING__TOKEN", msg1.data.result.userToken); + }, 100); + }, };