page.vue 411 B

1234567891011121314151617181920212223242526
  1. // 科技圈page模板
  2. <template>
  3. <section class="tech-main">
  4. <tech-menu v-bind="$attrs" v-on="$listeners"></tech-menu>
  5. <slot></slot>
  6. </section>
  7. </template>
  8. <script>
  9. import TechMenu from './menu'
  10. export default {
  11. components: {
  12. TechMenu,
  13. }
  14. }
  15. </script>
  16. <style scoped>
  17. .tech-main {
  18. display: flex;
  19. justify-content: space-between;
  20. width: var(--mainWidth);
  21. margin-top: 16px;
  22. }
  23. </style>