vehicle-monitor/src/layout/components/Footer/index.vue

26 lines
571 B
Vue
Raw Normal View History

2025-02-25 23:14:50 +08:00
<script lang="ts" setup></script>
<template>
<footer class="mt-[66px] mx-auto w-[772px] h-[125px]">
<ul class="flex-x-around">
<li
v-for="index in new Array(5)"
:key="index"
class="rectangle w-[138px] h-[125px] flex-y-center bg-[#0E094D55]"
>
2025-02-26 16:31:59 +08:00
<img alt="车辆管理" src="@/assets/images/layout/footer-39.png" />
<span class="text-white font-100">车辆管理</span>
2025-02-25 23:14:50 +08:00
</li>
</ul>
</footer>
</template>
<style lang="scss" scoped>
.rectangle {
img {
width: 67px;
height: 67px;
}
}
</style>