您好,登錄后才能下訂單哦!
要使用Vant的Tabbar組件,你需要先安裝Vant UI庫,并引入Tabbar組件。
npm install vant
<template>
<van-tabbar v-model="active">
<van-tabbar-item icon="home-o" to="/" replace>首頁</van-tabbar-item>
<van-tabbar-item icon="search" to="/search" replace>搜索</van-tabbar-item>
<van-tabbar-item icon="friends-o" to="/friends" replace>朋友</van-tabbar-item>
<van-tabbar-item icon="setting-o" to="/setting" replace>設置</van-tabbar-item>
</van-tabbar>
</template>
<script>
import { Tabbar, TabbarItem } from 'vant';
export default {
components: {
'van-tabbar': Tabbar,
'van-tabbar-item': TabbarItem
},
data() {
return {
active: '/'
};
}
};
</script>
在上面的代碼中,我們使用了Tabbar和TabbarItem組件,通過給TabbarItem組件傳入icon和to屬性來配置每個TabbarItem的圖標和跳轉鏈接,v-model綁定了當前選中的TabbarItem的鏈接,點擊TabbarItem時會自動跳轉到對應的頁面。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。