summaryrefslogtreecommitdiff
path: root/src/App.vue
blob: f6991c46b1446cd07d728eec9377230c931ca528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
  name: 'App',
  watch: {
    $route: function (to) {
      document.title = to.meta.title || 'Page is missing title';
    },
  },
  created() {
    document.title = this.$route.meta.title || 'Page is missing title';
  },
};
</script>

<style lang="scss">
@import '@/assets/styles/_obmc-custom';
</style>