| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="title-box">
- {{titleValue}}
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "title-top",
- props: {
- titleValue: {
- type: String,
- default: '空i企',
- },
- },
- data() {
- return {};
- },
- methods: {
- },
- };
- </script>
- <style>
- .title-box {
- width: 100%;
- height: 80rpx;
- background: transparent;
- position: absolute;
- top: 40rpx;
- color: #fff;
- letter-spacing: 6rpx;
- z-index: 9999;
- text-align: center;
- font-weight: 550;
- line-height: 85rpx;
- }
- </style>
|