index.vue 262 B

12345678910111213141516
  1. <template>
  2. <div class="p-fill-order">
  3. <h3 class="ptc-title">Fill Order</h3>
  4. <StepOne />
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import StepOne from './StepOne.vue'
  9. </script>
  10. <style lang="scss">
  11. .p-fill-order {
  12. background: #f7f7f7;
  13. }
  14. </style>