diff options
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index dae6356..083edd3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,16 +1,28 @@ <template> <div id="app"> - <NavBar /> + <NavBar + :routes="routes" + :externalRoutes="externalRoutes" + title="19 PDH Puszcza" + logoPath="../assets/krajka-logo.svg" + /> <router-view></router-view> </div> </template> <script> import NavBar from "./components/NavBar.vue"; +import { routes, externalRoutes } from "./router/index"; export default { name: "app", - components: { NavBar } + components: { NavBar }, + data() { + return { + routes, + externalRoutes + }; + } }; </script> |