Add navigation to the server view

This commit is contained in:
Dane Everitt 2018-06-02 23:36:20 -07:00
parent 349ec7da38
commit 0bf4764bfb
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -1,4 +1,6 @@
<template> <template>
<div>
<navigation></navigation>
<div class="container mx-auto p-2 flex flex-no-shrink rounded"> <div class="container mx-auto p-2 flex flex-no-shrink rounded">
<div class="sidebar border-grey-lighter flex-no-shrink w-1/4"> <div class="sidebar border-grey-lighter flex-no-shrink w-1/4">
<div class="pt-6 px-6 pb-4 text-center"> <div class="pt-6 px-6 pb-4 text-center">
@ -43,11 +45,13 @@
<router-view></router-view> <router-view></router-view>
</div> </div>
</div> </div>
</div>
</template> </template>
<script> <script>
import ServerConsole from "./ServerConsole"; import ServerConsole from "./ServerConsole";
import Navigation from '../core/Navigation';
export default { export default {
components: {ServerConsole} components: { Navigation, ServerConsole}
} }
</script> </script>