這篇文章將為大家詳細(xì)講解有關(guān)Vue如何實現(xiàn)導(dǎo)航欄菜單的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)公司是一家專業(yè)的成都網(wǎng)站建設(shè)公司,我們專注成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷、企業(yè)網(wǎng)站建設(shè),友情鏈接,1元廣告為企業(yè)客戶提供一站式建站解決方案,能帶給客戶新的互聯(lián)網(wǎng)理念。從網(wǎng)站結(jié)構(gòu)的規(guī)劃UI設(shè)計到用戶體驗提高,創(chuàng)新互聯(lián)力求做到盡善盡美。具體內(nèi)容如下
這里是剛學(xué)習(xí)vue的時候,沒有用vue的任何UI組件庫寫的導(dǎo)航欄菜單。
menu.html
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>導(dǎo)航欄左</title> <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" /> <link rel="stylesheet" href="css/titleMenuLeft.css" rel="external nofollow" /> <script type="text/javascript" src="js/vue.min.js" ></script> </head> <body> <nav class="title" role="navigation"> <div class="container-fluid"> <!--導(dǎo)航欄左邊logo跟項目名稱--> <div class="navbar-header"> <a class="navbar_title" href="#" rel="external nofollow" >項目名稱</a> </div> <!--導(dǎo)航欄用戶登錄信息--> <div class="navbar_user"> <img src="img/ani1.jpg"/> <span>您好,用戶!</span> </div> </div> </nav> <div class="body" id="body"> <div class="container"> <div class="row"> <!--左側(cè)菜單欄--> <div class="col-md-1 menu"> <ul class="nav menu_ul"> <li v-for="(menu,index) in menus" v-bind:id="menu.id" v-bind:class="{checked: index == nowIndex}" v-on:click="setTab('menu',index,menus)"> {{ menu.text }} </li> </ul> </div> <!--菜單切換主題--> <div class="col-md-11"> <div v-if="menu_index == 1">菜單一的內(nèi)容</div> <div v-if="menu_index == 2">菜單二的內(nèi)容</div> <div v-if="menu_index == 3">菜單三的內(nèi)容</div> <div v-if="menu_index == 4">菜單四的內(nèi)容</div> <div v-if="menu_index == 5">菜單五的內(nèi)容</div> <div v-if="menu_index == 6">菜單六的內(nèi)容</div> </div> </div> </div> </div> <div class="footer"></div> </body> <script> var nav = new Vue({ el: '#body', data: { menus: [ {text: '菜單一'}, {text: '菜單二'}, {text: '菜單三'}, {text: '菜單四'}, {text: '菜單五'}, {text: '菜單六'} ], nowIndex: 0, menu_index: 1 }, methods: { setTab: function(name,index,menus){ this.nowIndex = index; //this.menu_index = index + 1; } } }); </script> </html>
網(wǎng)站題目:Vue如何實現(xiàn)導(dǎo)航欄菜單的方法-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://muchs.cn/article42/iohec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、做網(wǎng)站、云服務(wù)器、面包屑導(dǎo)航、網(wǎng)頁設(shè)計公司、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容