1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
<div id="app">
<base-nav-bar v-if="!$route.meta.noNav" :navBarTitle="currentTitle" />
<router-view />
</div>
</template>
<script>
import { getAuthToken } from "@/utils/bridgeToAppFun";
import BaseNavBar from "./components/BaseNavBar.vue";
export default {
components: {
BaseNavBar
},
data() {
return {
currentTitle: ""
};
},
watch: {
$route(val) {
this.currentTitle = val.meta.title;
}
},
mounted() {
getAuthToken()
}
};
</script>
<style lang="scss">
body {
font-size: 16px;
font-family: PingFang-SC-Medium;
background: #f8f8f8;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>