blob: a5a768a55a739e07210bf757b5ec23da98b2dc3f [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) {
Derick Montaguee2fd1562019-12-20 13:26:53 -060016 document.title = to.meta.title || 'Page is Missing Title';
Derick Montaguec8636e52019-12-06 01:28:38 -060017 }
18 }
Derick Montaguea2988f42020-01-17 13:46:30 -060019};
20</script>