Copyright.vue 377 Bytes
<template>
  <div class="copyright">
    © 2025 长沙华恒机器人系统有限公司 All rights reserved
  </div>
</template>

<script></script>
<style lang="scss" scoped>
.copyright {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  text-align: center;
  /* padding: 10px 0; */
  height: 38px;
  line-height: 38px;
  z-index: 1000;
}
</style>