mtfosbot_web/src/App.vue

34 lines
486 B
Vue
Raw Permalink Normal View History

2018-08-11 15:05:14 +00:00
<template>
<div id="app">
<router-view/>
2018-08-11 16:36:08 +00:00
<Loading />
<Dialog />
2018-08-11 15:05:14 +00:00
</div>
</template>
2018-08-11 16:36:08 +00:00
<script>
import Loading from '@/components/Loading'
import Dialog from '@/components/Dialog'
2018-08-11 16:36:08 +00:00
export default {
name: 'root-view',
components: {
Loading,
Dialog
2018-08-11 15:05:14 +00:00
}
}
2018-08-11 16:36:08 +00:00
</script>
<style lang="less">
html, body {
height: 100%;
margin: 0;
padding: 0;
2018-08-20 16:24:36 +00:00
overflow: hidden;
2018-08-11 16:36:08 +00:00
}
#app {
height: 100%;
background-color: #eee;
2018-08-20 16:24:36 +00:00
overflow: auto;
2018-08-11 16:36:08 +00:00
}
2018-08-11 15:05:14 +00:00
</style>