footer.vue 332 B

123456789101112131415161718
  1. <template recyclable="true">
  2. <div class="footer">
  3. <text class="copyright">All rights reserved.</text>
  4. </div>
  5. </template>
  6. <style scoped>
  7. .footer {
  8. height: 80px;
  9. justify-content: center;
  10. background-color: #EEEEEE;
  11. }
  12. .copyright {
  13. color: #AAAAAA;
  14. font-size: 32px;
  15. text-align: center;
  16. }
  17. </style>