mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
优化
This commit is contained in:
parent
a38a270fb2
commit
8d89e20527
16
src/App.vue
16
src/App.vue
@ -1,21 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app" id="app">
|
<div id="app">
|
||||||
<keep-alive>
|
<router-view />
|
||||||
<router-view v-if="$route.meta.keepAlive"></router-view>
|
|
||||||
</keep-alive>
|
|
||||||
<router-view v-if="!$route.meta.keepAlive"></router-view>
|
|
||||||
<!-- tabbar -->
|
|
||||||
<TabBar></TabBar>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import TabBar from '@/components/TabBar'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App'
|
||||||
components: {
|
|
||||||
TabBar
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss"></style>
|
<style lang="scss"></style>
|
||||||
|
@ -1,28 +1,37 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<van-tabbar fixed route>
|
<van-tabbar fixed route v-model="active" @change="handleChange">
|
||||||
<van-tabbar-item to="/" icon="home-o">
|
<van-tabbar-item v-for="(item, index) in data" :to="item.to" :icon="item.icon" :key="index">
|
||||||
首页
|
{{ item.title }}
|
||||||
</van-tabbar-item>
|
|
||||||
<van-tabbar-item to="/about" icon="user-o">
|
|
||||||
关于我
|
|
||||||
</van-tabbar-item>
|
</van-tabbar-item>
|
||||||
</van-tabbar>
|
</van-tabbar>
|
||||||
<!-- <van-tabbar fixed v-model="active" @change="onChange">
|
|
||||||
<van-tabbar-item to="/home" icon="home-o">首页</van-tabbar-item>
|
|
||||||
<van-tabbar-item to="/about" icon="user-o">关于我</van-tabbar-item>
|
|
||||||
</van-tabbar> -->
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'TabBar',
|
name: 'TabBar',
|
||||||
data() {
|
props: {
|
||||||
return {
|
defaultActive: {
|
||||||
active: 0
|
type: Number,
|
||||||
|
default: 0
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
type: Array,
|
||||||
|
default: () => {
|
||||||
|
return []
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {}
|
data() {
|
||||||
|
return {
|
||||||
|
active: this.defaultActive
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleChange(value) {
|
||||||
|
this.$emit('change', value)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -6,19 +6,28 @@ export const constantRouterMap = [
|
|||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
name: 'index',
|
name: 'index',
|
||||||
component: () => import('@/views/home/index'), // 路由懒加载
|
component: () => import('@/layouts/TabBarLayout'), // 路由懒加载
|
||||||
|
redirect: '/home',
|
||||||
meta: {
|
meta: {
|
||||||
title: '首页', // 页面标题
|
title: '首页', // 页面标题
|
||||||
keepAlive: false // keep-alive 标识
|
keepAlive: false // keep-alive 标识
|
||||||
}
|
},
|
||||||
},
|
children: [
|
||||||
{
|
{
|
||||||
path: '/about',
|
path: '/home',
|
||||||
name: 'about',
|
name: 'Home',
|
||||||
component: () => import('@/views/home/about'),
|
component: () => import('@/views/home/index'),
|
||||||
meta: {
|
meta: { title: '首页', keepAlive: false }
|
||||||
title: '关于我',
|
},
|
||||||
keepAlive: false
|
{
|
||||||
}
|
path: '/about',
|
||||||
|
name: 'About',
|
||||||
|
component: () => import('@/views/home/about'),
|
||||||
|
meta: {
|
||||||
|
title: '关于我',
|
||||||
|
keepAlive: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
48
src/layouts/TabBarLayout.vue
Normal file
48
src/layouts/TabBarLayout.vue
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<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>
|
Loading…
x
Reference in New Issue
Block a user