2018-10-30 18:25:49 +05:30
|
|
|
<template>
|
2018-11-13 17:02:42 +05:30
|
|
|
<div id="lms-root">
|
2018-11-01 17:17:30 +05:30
|
|
|
<router-view :key="$route.fullPath"></router-view>
|
2018-10-30 18:25:49 +05:30
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2018-12-10 18:35:27 +05:30
|
|
|
import Navbar from "./components/Navbar.vue"
|
2018-10-30 18:25:49 +05:30
|
|
|
export default {
|
2018-11-21 15:21:57 +05:30
|
|
|
name: "lmsRoot",
|
2018-12-10 18:35:27 +05:30
|
|
|
components: {
|
|
|
|
Navbar
|
|
|
|
}
|
2018-10-30 18:25:49 +05:30
|
|
|
};
|
2018-12-10 18:35:27 +05:30
|
|
|
</script>
|