jhbigscreen/src/pages/map.vue

41 lines
581 B
Vue

<template>
<map-index></map-index>
</template>
<script>
import mapIndex from './index/mapIndex.vue'
export default {
name: 'JhbigscreenMap',
components: {
mapIndex
},
data() {
return {
};
},
beforeCreate(){
document.body.classList.add("is-map");
},
mounted() {
},
methods: {
},
};
</script>
<style lang="less">
body{
&.is-map{
height:100%;
.screen-content-max{
height: 100%;
}
.main-app{
height: 100%;
}
}
}
</style>