tm-top-menu.vue 382 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="tm-top-menu">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. }
  9. </script>
  10. <style lang="less">
  11. // 顶部按钮、信息start
  12. .tm-top-menu {
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. z-index: 10000;
  17. border-bottom: 1px solid #DADEE6;
  18. width: 100%;
  19. min-height: 50rpx;
  20. background-color: #fff;
  21. }
  22. // 顶部按钮、信息end
  23. </style>