| 123456789101112131415161718192021222324 |
- <template>
- <div class="inner-header">
- <h1 class="title">{{title}}</h1>
- <div class="line"></div>
- </div>
- </template>
- <script>
- export default {
- props: ['title'],
- }
- </script>
- <style scoped>
- h1 {
- text-align: center;
- margin: 20px 0 18px;
- }
- .line {
- width: 960px;
- height: 1px;
- background: rgba(0, 0, 0, 0.2);
- }
- </style>
|