container.vue 376 B

1234567891011121314151617181920212223
  1. <!--
  2. * @Author: Badguy
  3. * @Date: 2022-03-09 11:51:26
  4. * @LastEditTime: 2022-03-09 11:51:26
  5. * @LastEditors: your name
  6. * @Description: 离港容器视图
  7. * have a nice day!
  8. -->
  9. <template>
  10. <ContainerView />
  11. </template>
  12. <script>
  13. import ContainerView from '../container'
  14. export default {
  15. name: 'DepartureContainerView',
  16. components: {
  17. ContainerView
  18. }
  19. }
  20. </script>