ZhangXianQiang
2024-03-29 c755b7c6e1d9dda26ac6c41a1c49896ebedd077d
src/views/screen/components/screen-map-three/index.vue
@@ -1,13 +1,23 @@
<template>
  <div>
    123
  <div class="map-container" ref="mapContainer">
  </div>
</template>
<script>
import World from './world/world';
let world = null;
export default {
  name: 'ScreenMapThree'
  name: 'ScreenMapThree',
  mounted() {
    world = new World(this.$refs.mapContainer);
  }
}
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.map-container {
  width: 100%;
  height: 100%;
}
</style>