CopyRightInfo.vue 706 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <footer class="copyRightContainer">
  3. <div>
  4. <span class="copyRightInfo"></span>
  5. <!--<a class="copyRightNum" href="http://www.beian.miit.gov.cn" target="_blank">浙ICP备:16000400号-2</a>-->
  6. </div>
  7. </footer>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'CopyRightInfo',
  12. data() {
  13. return {
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="less">
  19. .copyRightContainer {
  20. position: absolute;
  21. bottom: 0px;
  22. width: 100%;
  23. height: 50px;
  24. line-height: 50px;
  25. background: #F0F0F0;
  26. font-size: 14px;
  27. color: #545455;
  28. }
  29. .copyRightInfo {
  30. margin: 0 22px 0 238px;
  31. }
  32. .copyRightNum{
  33. color:#545455
  34. }
  35. </style>