12345678910111213141516171819202122232425 |
- <template>
- <view class="tm-top-menu">
- <slot></slot>
- </view>
- </template>
- <script>
- export default {
- }
- </script>
- <style lang="less">
- // 顶部按钮、信息start
- .tm-top-menu {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10000;
- border-bottom: 1px solid #DADEE6;
- width: 100%;
- min-height: 50rpx;
- background-color: #fff;
- }
- // 顶部按钮、信息end
- </style>
|