bottomInfo.vue 695 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="bottom-info">
  3. <div>
  4. <span>Powered by</span>
  5. <span>
  6. <a href="https://github.com/flipped-aurora/gin-vue-admin">{{ $GIN_VUE_ADMIN.appName }}</a>
  7. </span>
  8. <el-divider direction="vertical" />
  9. <span>Copyright</span>
  10. <span>
  11. <a href="https://github.com/flipped-aurora">flipped-aurora团队</a>
  12. </span>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'BottomInfo'
  19. }
  20. </script>
  21. <style lang="scss">
  22. .bottom-info {
  23. color: #888;
  24. height: 30px;
  25. line-height: 12px;
  26. a {
  27. color: #888;
  28. }
  29. div {
  30. display: flex;
  31. justify-content: center;
  32. span{
  33. margin: 0 3px;
  34. }
  35. }
  36. }
  37. </style>