flight.vue 362 B

123456789101112131415161718192021222324
  1. <!--
  2. * @Author: Badguy
  3. * @Date: 2022-03-09 11:49:13
  4. * @LastEditTime: 2022-03-09 11:53:27
  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: 'DepartureFlightView',
  16. components: {
  17. FlightView
  18. }
  19. }
  20. </script>