123456789101112131415161718192021222324 |
- <!--
- * @Author: Badguy
- * @Date: 2022-03-09 11:49:13
- * @LastEditTime: 2022-03-09 11:53:27
- * @LastEditors: your name
- * @Description: 离港行李视图
- * have a nice day!
- -->
- <template>
- <FlightView />
- </template>
- <script>
- import FlightView from '../flight'
- export default {
- name: 'DepartureFlightView',
- components: {
- FlightView
- }
- }
- </script>
|