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

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

<script>
import AppHeader from "@/components/AppHeader";
import AppNavigation from "@/components/AppNavigation";
export default {
  name: "App",
  components: {
    AppHeader,
    AppNavigation
  }
};
</script>