1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="NavTop">
- <div>
-
- </div>
- <div>{{Text}}</div>
- <div>
- <slot name="right"></slot>
- </div>
- </div>
- </template>
- <script>
- export default {
- props:['Text']
- }
- </script>
- <style scoped lang="less">
- .NavTop{
- height: 12.889vw;
- background-color: white;
- display: flex;
-
- div{
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 4.444vw;
- }
-
- }
- </style>
|