mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
22 lines
407 B
Vue
22 lines
407 B
Vue
<template>
|
|
<div id="app">
|
|
<keep-alive>
|
|
<router-view v-if="$route.meta.keepAlive"></router-view>
|
|
</keep-alive>
|
|
<router-view v-if="!$route.meta.keepAlive"></router-view>
|
|
<!-- tabbar -->
|
|
<TabBar></TabBar>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import TabBar from '@/components/TabBar'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
TabBar
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
</style> |