14.vue返回上级页面按钮

2019-04-10  本文已影响0人  崩鲨卡拉卡
    <mt-header fixed title="洲峰电子">
        <span  slot="left"  class="back" style="font-size:1em" @click="back" v-show="flag" >
            <mt-button icon="back">返回</mt-button>
        </span>
   </mt-header>
export default {
  data() {
    return {
            flag:false
        };
  },
    watch: {
        "$route.path":function(newVal){
            //监听页面的路径  在home 页面下 ,隐藏返回按钮
                if(newVal==='/home'){
                    this.flag=false
                }else{
                        this.flag=true;
                }
        }
    },
  components: {}
};
上一篇下一篇

猜你喜欢

热点阅读