brotherton-erpnext/erpnext/public/js/education/lms/lmsRoot.vue
2019-02-19 13:06:33 +05:30

16 lines
253 B
Vue

<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>