22 lines
365 B
Vue
22 lines
365 B
Vue
<template>
|
|
<footer>
|
|
@版权所有:沈阳嘉尔科技有限公司
|
|
</footer>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@use "@/assets/scss/base";
|
|
footer{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 40px;
|
|
background-color: base.$background-color-main;
|
|
line-height: 40px;
|
|
color: #FFF;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<script setup lang="ts">
|
|
|
|
</script>
|