Derick Montague | e080a1a | 2019-12-04 16:30:08 -0600 | [diff] [blame^] | 1 | <template> |
| 2 | <div> |
| 3 | <AppHeader /> |
| 4 | <b-container fluid class="page-container"> |
| 5 | <b-row no-gutters> |
| 6 | <b-col tag="nav" cols="12" md="3" lg="2"> |
| 7 | <AppNavigation /> |
| 8 | </b-col> |
| 9 | <b-col cols="12" md="9" lg="10"> |
| 10 | <main id="#main-content"> |
| 11 | <router-view /> |
| 12 | </main> |
| 13 | </b-col> |
| 14 | </b-row> |
| 15 | </b-container> |
| 16 | </div> |
| 17 | </template> |
| 18 | |
| 19 | <script> |
| 20 | import AppHeader from "@/components/AppHeader"; |
| 21 | import AppNavigation from "@/components/AppNavigation"; |
| 22 | export default { |
| 23 | name: "App", |
| 24 | components: { |
| 25 | AppHeader, |
| 26 | AppNavigation |
| 27 | } |
| 28 | }; |
| 29 | </script> |
| 30 | |
| 31 | <style lang="scss" scoped> |
| 32 | .page-container { |
| 33 | margin-right: 0; |
| 34 | margin-left: 0; |
| 35 | padding-right: 0; |
| 36 | padding-left: 0; |
| 37 | } |
| 38 | </style> |