index.vue 286 B

123456789101112
  1. <template>
  2. <WaybillView name="InternationalDepartureWaybill" />
  3. </template>
  4. <script lang="ts">
  5. import WaybillView from '../../components/WaybillView/index.vue'
  6. export default defineComponent({
  7. name: 'InternationalDepartureWaybillView',
  8. components: { WaybillView },
  9. })
  10. </script>