123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="global-variable">
- <h2 class="TitleH2">主轴</h2>
- <zhuzhou></zhuzhou>
- <h2 class="TitleH2">齿轮箱</h2>
- <chilunxiang> </chilunxiang>
- <h2 class="TitleH2">发电机</h2>
- <fadianji></fadianji>
- </div>
- </template>
- <script>
- import Chilunxiang from './componentBJ/chilunxiang.vue';
- import Fadianji from './componentBJ/fadianji.vue';
- import zhuzhou from "./componentBJ/zhuzhou.vue";
- export default {
- components: { zhuzhou ,Chilunxiang, Fadianji},
- data(){
- return{
- plankoptions:[],
- plankvalue:"",
-
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .TitleH2 {
- font-weight: 800;
- font-size: 28px;
- margin: 20px 0;
- }
- </style>
|