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

31 lines
406 B
Vue
Raw Normal View History

2024-11-27 23:42:39 +08:00
<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>