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

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

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