Files
Aida_Purchaser_Front/src/views/home/section-footer.vue

15 lines
257 B
Vue
Raw Normal View History

2026-04-20 17:04:57 +08:00
<template>
<section class="section-footer"></section>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
</script>
<style lang="less">
.section-footer {
background-color: #f6f6f6;
border-top: 0.1rem solid #232323;
}
</style>