15 lines
257 B
Vue
15 lines
257 B
Vue
|
|
<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>
|