| 1234567891011121314151617181920 |
- <template>
- <div>
-
- <BSTTwo v-if="true"/>
- <typeOne v-else/>
- </div>
- </template>
- <script>
- import typeOne from '@/views/ProductionOrderList/ProductionPlanlist/type_one'
- import BSTTwo from '@/views/ProductionOrderList/ProductionPlanlist/BST_two'
- export default {
- components:{
- typeOne,
- BSTTwo
- }
- }
- </script>
- <style scoped>
- </style>
|