Footer.vue 888 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <footer class="footer">
  3. <div>
  4. MaxKey Enterprise Edition
  5. <br />
  6. Version v3.5.2 GA
  7. <br />
  8. Copyright
  9. <Icon iconClass="C"/>
  10. 2022
  11. <a href="//ww.maxkey.top"> MaxKey </a>
  12. . All rights reserved .
  13. </div>
  14. </footer>
  15. </template>
  16. <script lang="ts">
  17. import { defineComponent } from "@vue/runtime-core"
  18. import Icon from "./Icon.vue"
  19. export default defineComponent({
  20. components:{Icon}
  21. })
  22. </script>
  23. <style lang="less" scoped>
  24. .footer {
  25. width: 100%;
  26. padding-top: 30px;
  27. margin-bottom: 30px;
  28. border-top: 1px solid #e5e5e5;
  29. text-align: center;
  30. font-size: 14px;
  31. //color: rgb(139, 140, 140);
  32. color: rgba(0, 0, 0, 0.45);
  33. a {
  34. text-decoration: none;
  35. color: #1890FF;
  36. }
  37. }
  38. </style>