This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<template>
<div class="layout-footer">© 2020 马士兵(北京)教育科技有限公司</div>
</template>
<script setup>
import Breakcrumb from './breakcrumb.vue';
</script>
<style lang="less" scoped>
.layout-footer {
width: 100%;
padding: @layout-space-small 0;
display: flex;
align-items: center;
justify-content: center;
background-color: @layout-footer-bgc;
box-shadow: @layout-shadow;
color: @layout-footer-fc;
}
</style>