baggage.vue 399 B

123456789101112131415161718192021222324252627
  1. <!--
  2. * @Author: Badguy
  3. * @Date: 2022-03-09 11:51:26
  4. * @LastEditTime: 2022-03-09 11:54:15
  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: 'TransferDepartureBaggageView',
  16. components: {
  17. BaggageView
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>