vue tabbar底部导航栏
时间: 2023-03-24 11:03:38 浏览: 141
Vue tabbar底部导航栏是一种常见的UI组件,用于在移动端或者Web端展示多个页面或者功能入口。它通常由多个按钮组成,每个按钮代表一个页面或者功能,用户可以通过点击按钮来切换页面或者进入相应的功能。Vue tabbar底部导航栏可以通过Vue组件库或者自定义组件来实现。
相关问题
vue3实现TabBar底部导航栏灵活组件
Vue3中可以通过组合API和自定义组件等方式实现灵活的TabBar底部导航栏组件,以下是一个简单的实现示例:
1. 首先定义一个TabBarItem组件,用于渲染每个底部导航栏项的内容,包括图标和文本等。
```javascript
<template>
<div class="tab-bar-item" :class="{ active: active }" @click="handleClick">
<span class="tab-bar-icon">{{ icon }}</span>
<span class="tab-bar-text">{{ text }}</span>
</div>
</template>
<script>
export default {
props: {
icon: {
type: String,
required: true
},
text: {
type: String,
required: true
},
active: {
type: Boolean,
default: false
}
},
emits: ['change'],
methods: {
handleClick() {
this.$emit('change');
}
}
};
</script>
```
2. 然后定义一个TabBar组件,用于渲染整个底部导航栏,同时管理和切换每个TabBarItem的状态。
```javascript
<template>
<div class="tab-bar">
<tab-bar-item
v-for="(item, index) in tabs"
:key="index"
:icon="item.icon"
:text="item.text"
:active="index === activeIndex"
@change="handleChange(index)"
/>
</div>
</template>
<script>
import TabBarItem from './TabBarItem.vue';
export default {
components: {
TabBarItem
},
props: {
tabs: {
type: Array,
required: true
},
defaultIndex: {
type: Number,
default: 0
}
},
emits: ['change'],
data() {
return {
activeIndex: this.defaultIndex
};
},
methods: {
handleChange(index) {
if (index !== this.activeIndex) {
this.activeIndex = index;
this.$emit('change', index);
}
}
}
};
</script>
```
3. 最后在父组件中使用TabBar组件,传入需要显示的底部导航栏项和对应的内容组件,实现灵活的底部导航栏功能。
```javascript
<template>
<div class="app">
<router-view />
<tab-bar :tabs="tabs" @change="handleChange" />
</div>
</template>
<script>
import TabBar from './TabBar.vue';
import Home from './Home.vue';
import About from './About.vue';
export default {
components: {
TabBar,
Home,
About
},
data() {
return {
tabs: [
{
icon: 'home',
text: 'Home',
component: Home
},
{
icon: 'about',
text: 'About',
component: About
}
],
activeComponent: null
};
},
methods: {
handleChange(index) {
this.activeComponent = this.tabs[index].component;
}
}
};
</script>
```
在以上代码中,父组件通过监听TabBar组件的change事件,动态切换显示对应的内容组件,实现了灵活的底部导航栏功能。
Vue3实现TabBar底部导航栏灵活组件
Vue3中可以通过自定义组件实现底部导航栏的灵活组件。以下是一个简单的实现示例:
1. 创建一个TabBar组件,用于展示底部导航栏:
```vue
<template>
<div class="tab-bar">
<slot></slot>
</div>
</template>
<script>
export default {
name: "TabBar",
};
</script>
<style scoped>
.tab-bar {
display: flex;
justify-content: space-around;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 50px;
background-color: #fff;
box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
}
</style>
```
2. 在TabBar组件中使用slot插槽,用于接收底部导航栏的子组件。例如:
```vue
<template>
<div class="tab-bar">
<slot></slot>
</div>
</template>
<script>
export default {
name: "TabBar",
};
</script>
<style scoped>
.tab-bar {
display: flex;
justify-content: space-around;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 50px;
background-color: #fff;
box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
}
</style>
```
3. 创建底部导航栏子组件,例如TabBarItem。在TabBarItem中可以定义图标、文字和点击事件等属性。例如:
```vue
<template>
<div class="tab-bar-item" :class="{ active: active }" @click="handleClick">
<i :class="icon"></i>
<span>{{ title }}</span>
</div>
</template>
<script>
export default {
name: "TabBarItem",
props: {
icon: {
type: String,
required: true,
},
title: {
type: String,
required: true,
},
active: {
type: Boolean,
required: true,
},
},
methods: {
handleClick() {
this.$emit("click");
},
},
};
</script>
<style scoped>
.tab-bar-item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 12px;
color: #666;
}
.tab-bar-item i {
font-size: 20px;
margin-bottom: 2px;
}
.tab-bar-item.active {
color: #007aff;
}
</style>
```
4. 在父组件中使用TabBar和TabBarItem组件。例如:
```vue
<template>
<div>
<router-view />
<TabBar>
<TabBarItem
v-for="(tab, index) in tabs"
:key="index"
:icon="tab.icon"
:title="tab.title"
:active="index === activeIndex"
@click="activeIndex = index"
/>
</TabBar>
</div>
</template>
<script>
import TabBar from "@/components/TabBar.vue";
import TabBarItem from "@/components/TabBarItem.vue";
export default {
name: "App",
components: {
TabBar,
TabBarItem,
},
data() {
return {
tabs: [
{
icon: "icon-home",
title: "首页",
},
{
icon: "icon-category",
title: "分类",
},
{
icon: "icon-cart",
title: "购物车",
},
{
icon: "icon-person",
title: "个人中心",
},
],
activeIndex: 0,
};
},
};
</script>
```
在父组件中使用TabBar和TabBarItem组件,通过循环遍历tabs数组,动态生成底部导航栏子组件TabBarItem,并通过activeIndex属性控制当前激活的子组件。当子组件被点击时,通过click事件向父组件发送消息,触发activeIndex的变化,从而实现底部导航栏的切换。
阅读全文