mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
49 lines
908 B
Vue
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>
|