zoukankan      html  css  js  c++  java
  • vue关于this.$refs.tabs.refreshs()刷新组件,缓存

    当更改了用户信息后,需要刷新页面或者组件。

    1.当前组件刷新。定义一个请求用户信息的方法,在需要时调用:

    sessionStorage.setItem('userInfo',JSON.stringify(this.userInfo));

    2.刷新父组件。

    子组件某个需要的地方:

       this.$emit('refresh');  
    父组件:
    methods:{
            refresh() {
                this.userInfo = JSON.parse(sessionStorage.getItem('userInfo'));
            }
        },
    3.非关系组件:
    父组件:
    <template>
      //需要刷新的组件(非关系组件)
       <top-bar ref="tabs"/>
       <div class="content">
             //子组件
             <router-view class="animated zoomIn"  @refresh="refresh"></router-view>
       </div>
    </template>
    methods:{
            refresh() {
                this.$refs.tabs.refreshs();
            }
        },
  • 相关阅读:
    pyinstaller模块
    使用reduce方法数组去重
    Linux的关机与重启命令
    splice和slice的区别
    发现splice的新大陆
    text-decoration和outline
    前端中关于堆和栈的那些事
    git
    前端代码规范
    弹性布局在项目中的使用示例
  • 原文地址:https://www.cnblogs.com/wd163/p/13168779.html
Copyright © 2011-2022 走看看