国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

vue使用動態(tài)組件實現(xiàn)TAB切換效果完整實例

瀏覽:197日期:2022-06-09 17:41:46
目錄
  • 一、方法1:使用Vant組件庫的tab組件
  • 二、 方法2:手動創(chuàng)建tab切換效果
  • 三、完整代碼
  • 總結(jié)

一、方法1:使用Vant組件庫的tab組件

二、 方法2:手動創(chuàng)建tab切換效果

1.在components文件夾下創(chuàng)建切換的.vue頁面、引入使用

import one from "./components/one";import two from "./components/two";import three from "./components/three";import four from "./components/four";components: {    one,    two,    three,    four,},

2.布局:上面放tab點擊的標(biāo)簽,下面放組件呈現(xiàn)對應(yīng)內(nèi)容

// 然后使用v-for循環(huán)出來呈現(xiàn)<template>   <div id="app">      <div>      <!-- 放置tab點擊標(biāo)簽 --> <div :class="{ highLight: whichIndex == index }" v-for="(item, index) in cardArr" :key="index" @click="whichIndex = index">    {{ item.componentName }}</div>      </div>      <div><!-- 放置動態(tài)組件... -->       <!-- keep-alive緩存組件,這樣的話,組件就不會被銷毀,DOM就不會被重新渲染,       瀏覽器也就不會回流和重繪,就可以優(yōu)化性能。不使用的話頁面加載就會慢一點 -->       <keep-alive> <component :is="componentId"></component>       </keep-alive>      </div>   </div></template>

3.寫好上面的tab點擊標(biāo)簽,定義數(shù)據(jù)修改樣式

// 首先我們在data中定義數(shù)組cardArr存放點擊tab的數(shù)據(jù)data() {   return {      whichIndex: 0,      cardArr: [{  componentName: "動態(tài)組件一",  componentId: "one",},{  componentName: "動態(tài)組件二",  componentId: "two",},{  componentName: "動態(tài)組件三",  componentId: "three",},{  componentName: "動態(tài)組件四",  componentId: "four",},      ],    };},
// 又因為需要有高亮狀態(tài)樣式:默認(rèn)索引0高亮.highLight {  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);  transform: translate3d(0, -1px, 0);}

三、完整代碼

<template>  <div id="app">    <div>      <div       :class="{ highLight: whichIndex == index }"v-for="(item, index) in cardArr":key="index"@click="  whichIndex = index;  componentId = item.componentId;"      >{{ item.componentName }}      </div>    </div>    <div>      <keep-alive><component :is="componentId"></component>      </keep-alive>    </div>  </div></template><script>import one from "./components/one";import two from "./components/two";import three from "./components/three";import four from "./components/four";export default {  components: {    one,    two,    three,    four,  },  data() {    return {      whichIndex: 0,      componentId: "one",      cardArr: [{  componentName: "動態(tài)組件一",  componentId: "one",},{  componentName: "動態(tài)組件二",  componentId: "two",},{  componentName: "動態(tài)組件三",  componentId: "three",},{  componentName: "動態(tài)組件四",  componentId: "four",},      ],    };  },};</script><style lang="less" scoped>#app {  width: 100%;  height: 100vh;  box-sizing: border-box;  padding: 50px;  .top {    width: 100%;    height: 80px;    display: flex;    justify-content: space-around;    .crad {      width: 20%;      height: 80px;      line-height: 80px;      text-align: center;      background-color: #fff;      border: 1px solid #e9e9e9;    }    .highLight {      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);      transform: translate3d(0, -1px, 0);    }  }  .bottom {    margin-top: 20px;    width: 100%;    height: calc(100% - 100px);    border: 3px solid pink;    display: flex;    justify-content: center;    align-items: center;  }}</style>

總結(jié)

到此這篇關(guān)于vue使用動態(tài)組件實現(xiàn)TAB切換效果的文章就介紹到這了,更多相關(guān)vue動態(tài)組件實現(xiàn)TAB切換內(nèi)容請搜索以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持!

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 黑山县| 翁牛特旗| 永嘉县| 会宁县| 额敏县| 宜阳县| 乐业县| 黔南| 水富县| 高台县| 北辰区| 福鼎市| 图们市| 瑞金市| 云霄县| 长岭县| 望江县| 广平县| 大埔区| 顺平县| 河北区| 永登县| 濮阳市| 广东省| 桑日县| 宿州市| 依安县| 许昌市| 塘沽区| 昭平县| 景德镇市| 吴旗县| 缙云县| 库伦旗| 漳州市| 巴塘县| 白城市| 赣榆县| 综艺| 古交市| 三都|