summaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue31
1 files changed, 2 insertions, 29 deletions
diff --git a/src/App.vue b/src/App.vue
index d0e1a0ae..56674955 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,18 +1,6 @@
<template>
<div id="app">
- <AppHeader />
- <b-container fluid class="page-container">
- <b-row no-gutters>
- <b-col tag="nav" cols="12" md="3" lg="2">
- <AppNavigation />
- </b-col>
- <b-col cols="12" md="9" lg="10">
- <main id="#main-content">
- <router-view />
- </main>
- </b-col>
- </b-row>
- </b-container>
+ <router-view />
</div>
</template>
@@ -21,22 +9,7 @@
</style>
<script>
-import AppHeader from "@/components/AppHeader";
-import AppNavigation from "@/components/AppNavigation";
export default {
- name: "App",
- components: {
- AppHeader,
- AppNavigation
- }
+ name: "App"
};
</script>
-
-<style lang="scss" scoped>
-.page-container {
- margin-right: 0;
- margin-left: 0;
- padding-right: 0;
- padding-left: 0;
-}
-</style>