YZProjectCloud/yanzhu-bigscreen/src/pages-old/map.vue

31 lines
406 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">
</style>