Newer
Older
robot_dog_patrol_front / src / views / home / dashboard / index.vue
<!-- 首页 -->
<script lang="ts" setup name="Dashboard">
import threeCom from '@/components/threejs/index.vue'
</script>

<template>
  <!-- 布局 -->
  <app-container class="app-container">
    <three-com class="three-area" />
  </app-container>
</template>

<style lang="scss" scoped>
.app-container {
  width: 100%;
  height: 100%;
  .three-area {
    position: relative;
    width: 100%;
    height: 600px;
  }
}
</style>