vue 父子组件传值

https://vuex.vuejs.org/zh/

调用子组件的时候 定义一个ref

在父组件里面通过

this.$refs.headerChild.属性
this.$refs.headerChild.方法

 

 


子组件主动获取父组件的数据和方法
在子组件里面通过

this.$parent.属性
this.$parent.方法

 

 

localStorage.Authorization

delete localStorage.Authorization

 

(1).储存数据

localStorage.setItem('accessToken', 'Bearer ' + response.data.result.accessToken)
 

(2).取出数据

localStorage.getItem('accessToken')
 

(3).删除储存数据

 localStorage.removeItem('accessToken')
 

(4).更改数据

 
localStorage.setItem('accessToken', '更改后' + response.data.result.accessToken)

 

你可能感兴趣的:(vue)