HelpFooter.vue 406 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <footer>
  3. <div class=" text-center">
  4. <p>
  5. &copy; 2016 深圳市优软科技有限公司
  6. </p>
  7. </div>
  8. </footer>
  9. </template>
  10. <script>
  11. export default{
  12. name: 'HelpFooter'
  13. }
  14. </script>
  15. <style scoped>
  16. footer{
  17. position: fixed;
  18. bottom: 0;
  19. background: #fff;
  20. height: 40px;
  21. line-height: 40px;
  22. }
  23. footer p{
  24. font-size: 14px;
  25. color: #000;
  26. }
  27. </style>