| 1234567891011121314151617181920212223242526 |
- // 科技圈page模板
- <template>
- <section class="tech-main">
- <tech-menu v-bind="$attrs" v-on="$listeners"></tech-menu>
- <slot></slot>
- </section>
- </template>
- <script>
- import TechMenu from './menu'
- export default {
- components: {
- TechMenu,
- }
- }
- </script>
- <style scoped>
- .tech-main {
- display: flex;
- justify-content: space-between;
- width: var(--mainWidth);
- margin-top: 16px;
- }
- </style>
|