28 lines
554 B
Vue
28 lines
554 B
Vue
<template>
|
|
<div>
|
|
<EntregaRegreso :operador="operador" :updateIsLoading="updateIsLoading" />
|
|
|
|
<hr />
|
|
|
|
<Activos :operador="operador" :updateIsLoading="updateIsLoading" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import EntregaRegreso from '@/components/operador/EntregaRegreso'
|
|
import Activos from '@/components/operador/Activos'
|
|
|
|
export default {
|
|
components: {
|
|
Activos,
|
|
EntregaRegreso,
|
|
},
|
|
props: {
|
|
operador: { type: Object, required: true },
|
|
updateIsLoading: { type: Function, required: true },
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|