Files
portal/src/views/layout/pc/footer/components/logo.vue
2025-09-06 10:09:54 +08:00

25 lines
389 B
Vue

<script setup>
import {ref, onMounted} from 'vue'
onMounted(() => {})
</script>
<template>
<div class="logo flex column j-s">
<img class="logo-img" src="/static/images/footer/logo.png" />
</div>
</template>
<style lang="scss" scoped>
.logo {
width: 100%;
height: 100%;
text-align: center;
color: $white;
.logo-img {
width: 140px;
height: 209px;
}
}
</style>