| | |
| | | <script setup></script> |
| | | |
| | | <template> |
| | | <div class="left">10</div> |
| | | <div class="right">20</div> |
| | | <HomeLeft></HomeLeft> |
| | | <!-- <div>中间搜索</div> --> |
| | | <HomeRight></HomeRight> |
| | | <SearchBox /> |
| | | </template> |
| | | |
| | | <style scoped lang="scss"> |
| | | div { |
| | | font-size: 20px; |
| | | } |
| | | <script setup> |
| | | import HomeRight from './components/HomeRight/HomeRight.vue'; |
| | | import HomeLeft from '@/views/Home/components/HomeLeft/HomeLeft.vue'; |
| | | import SearchBox from '@/views/Home/SearchBox.vue'; |
| | | import { useAggregation } from '@/views/Home/useAggregation'; |
| | | import MapPopUpBox from '@/views/Home/MapPopUpBox.vue'; |
| | | import { render } from 'vue'; |
| | | |
| | | .left { |
| | | left: 0; |
| | | position: absolute; |
| | | width: 300px; |
| | | height: 100%; |
| | | background: #2b373d; |
| | | } |
| | | .right{ |
| | | right: 0; |
| | | position: absolute; |
| | | width: 300px; |
| | | height: 100%; |
| | | background: #2b373d; |
| | | } |
| | | </style> |
| | | |
| | | useAggregation() |
| | | </script> |