Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame^] | 1 | <template> |
2 | <div id="app"> | ||||
3 | <AppHeader /> | ||||
4 | <AppNavigation /> | ||||
5 | <main id="#main-content"> | ||||
6 | <router-view /> | ||||
7 | </main> | ||||
8 | </div> | ||||
9 | </template> | ||||
10 | |||||
11 | <style lang="scss"> | ||||
12 | @import "@/assets/styles/_obmc-custom"; | ||||
13 | </style> | ||||
14 | |||||
15 | <script> | ||||
16 | import AppHeader from "@/components/AppHeader"; | ||||
17 | import AppNavigation from "@/components/AppNavigation"; | ||||
18 | export default { | ||||
19 | name: "App", | ||||
20 | components: { | ||||
21 | AppHeader, | ||||
22 | AppNavigation | ||||
23 | } | ||||
24 | }; | ||||
25 | </script> |