about summary refs log tree commit diff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/App.vue b/src/App.vue
index 5526676..0497a35 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,11 +1,7 @@
 <template>
   <div id="app">
-    <NavBar
-      :routes="routes"
-      :externalRoutes="externalRoutes"
-      title="19 PDH Puszcza"
-      logo="assets/krajka-logo.svg"
-    />
+    <NavBar :routes="routes" :externalRoutes="externalRoutes" title="19 PDH Puszcza" />
+    <!-- logo="assets/krajka-logo.svg" -->
     <router-view></router-view>
   </div>
 </template>
@@ -20,7 +16,7 @@ export default {
   data() {
     return {
       routes,
-      externalRoutes
+      externalRoutes: []
     };
   }
 };