baggage.vue 378 B

1234567891011121314151617181920212223
  1. <!--
  2. * @Author: Badguy
  3. * @Date: 2022-03-09 11:51:26
  4. * @LastEditTime: 2022-05-05 16:55:10
  5. * @LastEditors: your name
  6. * @Description: 中转进港行李视图
  7. * have a nice day!
  8. -->
  9. <template>
  10. <BaggageView />
  11. </template>
  12. <script>
  13. import BaggageView from '../baggage'
  14. export default {
  15. name: 'TransferArrivalBaggageView',
  16. components: {
  17. BaggageView
  18. }
  19. }
  20. </script>