中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue怎么實現tab切換外加樣式切換方法

發布時間:2021-04-23 13:10:13 來源:億速云 閱讀:273 作者:小新 欄目:web開發

小編給大家分享一下vue怎么實現tab切換外加樣式切換方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

vue是什么

Vue是一套用于構建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區別是,使用Vue可以自底向上逐層應用,其核心庫只關注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態系統支持的庫開發復雜的單頁應用。

實例如下所示:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
 <style>
  * {
   margin: 0;
   padding: 0;
   list-style: none
  }
  #app {
   width: 504px;
   height: 300px;
   margin: 100px auto;
   border: 1px solid #000;
  }
  ul {
   overflow: hidden;
  }
  li {
   width: 100px;
   height: 50px;
   float: left;
   text-align: center;
   line-height: 50px;
   border-bottom: 1px solid #000;
   border-right: 1px solid #000;
  }
  li:nth-child(5) {
   border-right: none;
  }
  .cur {
   height: 51px;
   background: blue;
   border-bottom: none;
  }
 </style>
</head>
<body>
<div id="app">
 <ul>
  <li v-for="(num,index) in nums" :class="{cur:iscur==index}" @click="iscur = index,tab('text'+(index+1))">
   {{num.t}}
  </li>
 </ul>
 <div class="box">
  <component :is='currentView' keep-alive></component>
 </div>
</div>
<script src="vue.js"></script>
<script>
 const text1 = Vue.component('text1', {template: `<div><h2>Text111111111111</h2></div>`});
 const text2 = Vue.component('text2', {template: `<div><h2>Text222222222222</h2></div>`});
 const text3 = Vue.component('text3', {template: `<div><h2>Text333333333333</h2></div>`});
 const text4 = Vue.component('text4', {template: `<div><h2>Text444444444444</h2></div>`});
 const text5 = Vue.component('text5', {template: `<div><h2>Text555555555555</h2></div>`});
 var vm = new Vue({
  el: "#app",
  data: {
   currentView: text1,
   nums: [{t: "text1"}, {t: "text2"}, {t: "text3"}, {t: "text4"}, {t: "text5"}],
   iscur: 0
  },
  methods: {
   tab(tabText){
    this.currentView = tabText;
   }
  }
 })
</script>
</body>
</html>

以上是“vue怎么實現tab切換外加樣式切換方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐清市| 雷州市| 天祝| 清涧县| 元江| 剑阁县| 宜城市| 淳化县| 醴陵市| 泾阳县| 同仁县| 灯塔市| 古田县| 汝城县| 江油市| 疏勒县| 文化| 保定市| 光泽县| 黄梅县| 茶陵县| 桃江县| 瑞金市| 额尔古纳市| 闽清县| 大港区| 紫阳县| 宁化县| 定兴县| 石阡县| 紫金县| 张北县| 禹城市| 静宁县| 汶上县| 和田县| 绥棱县| 科技| 芮城县| 咸丰县| 三台县|