diff --git a/src/App.vue b/src/App.vue index 1c61672e..dc22450a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -30,6 +30,10 @@ }, mounted(){ + var router = this.$route.query; + if(router.token){ + localStorage.setItem("token", router.token); + } let inputList = document.querySelectorAll('input'); for (let index = 0; index < inputList.length; index++) { inputList[index].onfocus = this.selectValue();//input放入焦点,全选文本 @@ -37,7 +41,7 @@ }, methods:{ - //全选文本 + //全选文本 selectValue(e) { e.currentTarget.select(); }