chooseIndustry.vue 375 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="choose_industry">
  3. <industry/>
  4. </div>
  5. <!-- 最外的盒子 -->
  6. </template>
  7. <script>
  8. import '~/assets/new.scss' // 引入
  9. import '~/static/css/style.css' // 引入
  10. import industry from '~/components/industrySelect.vue'
  11. export default {
  12. components:{
  13. industry
  14. }
  15. }
  16. </script>
  17. <style>
  18. body {
  19. background-color: #fff!important;
  20. }
  21. </style>