inner_header.vue 338 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="inner-header">
  3. <h1 class="title">{{title}}</h1>
  4. <div class="line"></div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. props: ['title'],
  10. }
  11. </script>
  12. <style scoped>
  13. h1 {
  14. text-align: center;
  15. margin: 20px 0 18px;
  16. }
  17. .line {
  18. width: 960px;
  19. height: 1px;
  20. background: rgba(0, 0, 0, 0.2);
  21. }
  22. </style>