blob: f6991c46b1446cd07d728eec9377230c931ca528 [file] [log] [blame]
<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>