Footer.vue 622 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="copyright">
  3. <div class="in" @click="goBeian">
  4. Copyright © 2021 河南省汇很多科技有限公司 豫ICP备 2021029101 号
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. setup() {
  11. function goBeian() {
  12. window.open("https://beian.miit.gov.cn/");
  13. }
  14. return {
  15. goBeian,
  16. };
  17. },
  18. };
  19. </script>
  20. <style scoped>
  21. .copyright {
  22. width: 100%;
  23. height: 60px;
  24. background: #b3c0d1;
  25. }
  26. .in {
  27. width: 520px;
  28. margin: 0 auto;
  29. line-height: 60px;
  30. font-family: PingFang SC;
  31. font-weight: 400;
  32. color: #333333;
  33. opacity: 0.8;
  34. cursor: pointer;
  35. }
  36. </style>