flight.vue 374 B

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