App.vue 607 Bytes
Newer Older
leiqingsong's avatar
leiqingsong committed
1 2
<template>
  <div id="app">
leiqingsong's avatar
leiqingsong committed
3
    <base-nav-bar v-if="!$route.meta.noNav" :navBarTitle="currentTitle" />
leiqingsong's avatar
leiqingsong committed
4 5 6 7
    <router-view />
  </div>
</template>

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<script>
import BaseNavBar from "./components/BaseNavBar.vue";
export default {
  components: {
    BaseNavBar
  },
  data() {
    return {
      currentTitle: ""
    };
  },
  watch: {
    $route(val) {
      this.currentTitle = val.meta.title;
    }
  }
};
</script>

leiqingsong's avatar
leiqingsong committed
27 28 29
<style lang="scss">
body {
  font-size: 16px;
leiqingsong's avatar
leiqingsong committed
30
  font-family: PingFang-SC-Medium;
leiqingsong's avatar
leiqingsong committed
31 32 33 34 35
  background: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
</style>