modules.vue 690 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="global-variable">
  3. <h2 class="TitleH2">主轴</h2>
  4. <zhuzhou></zhuzhou>
  5. <h2 class="TitleH2">齿轮箱</h2>
  6. <chilunxiang> </chilunxiang>
  7. <h2 class="TitleH2">发电机</h2>
  8. <fadianji></fadianji>
  9. </div>
  10. </template>
  11. <script>
  12. import Chilunxiang from './componentBJ/chilunxiang.vue';
  13. import Fadianji from './componentBJ/fadianji.vue';
  14. import zhuzhou from "./componentBJ/zhuzhou.vue";
  15. export default {
  16. components: { zhuzhou ,Chilunxiang, Fadianji},
  17. data(){
  18. return{
  19. plankoptions:[],
  20. plankvalue:"",
  21. }
  22. }
  23. };
  24. </script>
  25. <style lang="scss" scoped>
  26. .TitleH2 {
  27. font-weight: 800;
  28. font-size: 28px;
  29. margin: 20px 0;
  30. }
  31. </style>