temporaryPlan.vue 270 B

12345678910111213141516
  1. <template>
  2. <div>
  3. <homeIndex :timeDimensionPlanType="2"></homeIndex>
  4. </div>
  5. </template>
  6. <script>
  7. import homeIndex from './index.vue';
  8. export default {
  9. components: { homeIndex },
  10. name: 'factoryPlan',
  11. data() {
  12. return {};
  13. }
  14. };
  15. </script>