diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-13 10:58:30 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-13 10:58:30 +0200 |
commit | 71abfc6cdfd94ff403575efcbd80f90dac402a12 (patch) | |
tree | ba242ec9f5cd4cdb5395dd022d149ff9a4715349 /src/App.vue | |
parent | 1e15172a7dfe5baf20225786c1ea06af0d3e691c (diff) | |
download | puszcza-71abfc6cdfd94ff403575efcbd80f90dac402a12.tar.gz puszcza-71abfc6cdfd94ff403575efcbd80f90dac402a12.zip |
Add bit
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> |