vue在多页面情况下在子页面中进行点击页面部分被跳转

通常我们在实现了vue多页面之后都会遇到一个问题,那就是在多页面中在进行页面跳转还是像之前的单页面一样配置路由吗?

答案是:NO!

我们在进行多页面跳转之后在子页面中进行跳转不使用路由,我们只需要在点击跳转出来的多页面中进行配置即可:
代码:

<template>
  <div id="app">
    <ul>
      <li v-for="(tab,index) in tabs" @click="toggle(index,tab.view)" :class="{active:active==index}">
        {{tab.type}}
      </li>
    </ul>
    <!--:is实现多个组件实现同一个挂载点-->
    <component :is="currentView"></component>
  </div>
</template>

<script>
import tab1 from './components/tabs/tab1.vue'
import tab2 from './components/tabs/tab2.vue'
export default {
  name: 'app',
  data(){
    return {
      active:0,
      currentView:'tab1',
      tabs:[
        {
          type:'tab1',
          view:'tab1'
        },
        {
          type:'tab2',
          view:'tab2'
        }
      ]
    }
  },
  methods:{
    toggle(i,v){
      this.active=i;
      this.currentView=v;
    }
  },
  components:{
    tab1,
    tab2
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* text-align: center;
  color: #2c3e50;
  margin-top: 60px; */
}
ul{
  width:200px;
  display:flex;
}
ul li{
  width:100px;
  height:40px;
  background: #ccc;
  display: inline-flex;
  border-right:1px solid #ddd;
  justify-content: center;
  align-items: center;
  cursor:pointer
}
ul li.active{
 background:#333;
}
</style>

效果图:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_44629323/article/details/107751245
今日推荐