blob: b57a91db41c541ef1bc64f5deff114bc4d5410b6 [file] [log] [blame]
Derick Montaguea2988f42020-01-17 13:46:30 -06001<template>
2 <div id="app">
Derick Montaguee080a1a2019-12-04 16:30:08 -06003 <router-view />
Derick Montaguea2988f42020-01-17 13:46:30 -06004 </div>
5</template>
6
7<style lang="scss">
Derick Montaguee2fd1562019-12-20 13:26:53 -06008@import '@/assets/styles/_obmc-custom';
Derick Montaguea2988f42020-01-17 13:46:30 -06009</style>
10
11<script>
Derick Montaguea2988f42020-01-17 13:46:30 -060012export default {
Derick Montaguee2fd1562019-12-20 13:26:53 -060013 name: 'App',
Derick Montaguec8636e52019-12-06 01:28:38 -060014 watch: {
15 $route: function(to) {
Yoshie Muranakaf15cc7a2020-09-09 10:08:14 -070016 document.title = to.meta.title || 'Page is missing title';
Derick Montaguec8636e52019-12-06 01:28:38 -060017 }
Yoshie Muranakaf15cc7a2020-09-09 10:08:14 -070018 },
19 created() {
20 document.title = this.$route.meta.title || 'Page is missing title';
Derick Montaguec8636e52019-12-06 01:28:38 -060021 }
Derick Montaguea2988f42020-01-17 13:46:30 -060022};
23</script>