list.vue 352 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <BSTTwo v-if="true"/>
  4. <typeOne v-else/>
  5. </div>
  6. </template>
  7. <script>
  8. import typeOne from '@/views/ProductionOrderList/ProductionPlanlist/type_one'
  9. import BSTTwo from '@/views/ProductionOrderList/ProductionPlanlist/BST_two'
  10. export default {
  11. components:{
  12. typeOne,
  13. BSTTwo
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. </style>