vehicle-monitor/src/views/smart-park/index.vue

25 lines
668 B
Vue
Raw Normal View History

2025-03-05 13:00:34 +08:00
<script lang="ts" setup>
2025-03-10 21:28:27 +08:00
import SmartPartContent from '@/views/smart-park/components/smart-park-content/index.vue';
import SmartPartFooter from '@/views/smart-park/components/smart-park-footer/index.vue';
2025-03-05 13:00:34 +08:00
</script>
<template>
<div class="smart-park">
<div class="smart-park__arrow left-[38px]">
<img alt="左箭头" src="@/assets/images/smart-park/arrow/arrow-left.png" />
</div>
2025-03-05 13:00:34 +08:00
<smart-part-content />
2025-03-05 13:00:34 +08:00
<smart-part-footer />
2025-03-05 13:00:34 +08:00
<div class="smart-park__arrow right-[38px]">
<img alt="左箭头" src="@/assets/images/smart-park/arrow/arrow-right.png" />
</div>
</div>
</template>
2025-03-11 23:21:59 +08:00
<style lang="scss">
@use 'style.scss';
2025-03-05 13:00:34 +08:00
</style>