123456789101112131415161718192021222324252627 |
- <template>
- <div id="app" style="height: 100%">
- <router-view style="height: 100%"/>
- <tab-bar v-if="$route.meta.navShow"/>
- </div>
- </template>
- <script>
- import TabBar from "./components/TabBar";
- export default {
- components: {TabBar},
- }
- </script>
- <style>
- #app {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- }
- body {
- background-color: #fff6e3;
- }
- </style>
|