App.vue 708 Bytes
Newer Older
leiqingsong's avatar
leiqingsong committed
1 2
<template>
  <div id="app">
3
    <base-nav-bar :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 27 28 29 30
<script>
import BaseNavBar from "./components/BaseNavBar.vue";
export default {
  components: {
    BaseNavBar
  },
  data() {
    return {
      currentTitle: ""
    };
  },
  watch: {
    $route(val) {
      this.currentTitle = val.meta.title;
    }
  },
  created() {
    console.log("router", this.$router);
    // this.currentTitle = this.$router.currentRoute.meta.title;
  }
};
</script>

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