ZhangXianQiang
2024-03-29 c755b7c6e1d9dda26ac6c41a1c49896ebedd077d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div class="map-container" ref="mapContainer">
    
  </div>
</template>
 
<script>
import World from './world/world';
let world = null;
export default {
  name: 'ScreenMapThree',
  mounted() {
    world = new World(this.$refs.mapContainer);
  }
}
</script>
 
<style lang="scss" scoped>
.map-container {
  width: 100%;
  height: 100%;
}
</style>