2018-10-30 12:55:49 +00:00
|
|
|
<template>
|
2018-11-13 11:32:42 +00:00
|
|
|
<div id="lms-root">
|
2018-11-01 11:47:30 +00:00
|
|
|
<router-view :key="$route.fullPath"></router-view>
|
2018-10-30 12:55:49 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2018-11-21 09:51:57 +00:00
|
|
|
name: "lmsRoot",
|
|
|
|
mounted() {
|
|
|
|
$(document).scrollTop(0)
|
|
|
|
}
|
2018-10-30 12:55:49 +00:00
|
|
|
};
|
|
|
|
</script>
|