UI Improvements: Added Custom Navbar

This commit is contained in:
scmmishra
2018-12-10 18:35:27 +05:30
committed by Aditya Hase
parent 87df23b52d
commit d02fd13bf0
5 changed files with 110 additions and 4 deletions

View File

@@ -1,10 +1,15 @@
<template>
<div id="lms-root">
<navbar></navbar>
<router-view :key="$route.fullPath"></router-view>
</div>
</template>
<script>
import Navbar from "./components/Navbar.vue"
export default {
name: "lmsRoot",
components: {
Navbar
}
};
</script>
</script>