vue-h5-template/src/layouts/TabBarLayout.vue
2020-05-31 22:17:06 +08:00

49 lines
908 B
Vue

<template>
<div class="tabbar-layout-containter">
<div class="tabbar-layout-content">
<keep-alive v-if="$route.meta.keepAlive">
<router-view></router-view>
</keep-alive>
<router-view v-else></router-view>
</div>
<div class="tabbar-layout-footer">
<TabBar :data="tabbars" @change="handleChange" />
</div>
</div>
</template>
<script>
import TabBar from '@/components/TabBar'
export default {
name: 'TabBarLayout',
data() {
return {
tabbars: [
{
title: '首页',
to: {
name: 'Home'
},
icon: 'home-o'
},
{
title: '关于我',
to: {
name: 'About'
},
icon: 'user-o'
}
]
}
},
components: {
TabBar
},
methods: {
handleChange(v) {
console.log('tab value:', v)
}
}
}
</script>