1234567891011121314151617181920212223 |
- <!--
- * @Author: Badguy
- * @Date: 2022-03-09 11:51:26
- * @LastEditTime: 2022-03-09 11:51:26
- * @LastEditors: your name
- * @Description: 离港容器视图
- * have a nice day!
- -->
- <template>
- <ContainerView />
- </template>
- <script>
- import ContainerView from '../container'
- export default {
- name: 'DepartureContainerView',
- components: {
- ContainerView
- }
- }
- </script>
|