Files
shipping-portal/resources/assets/vue/components/orders/elements/ApproveChangeAddressComponent.vue
T

23 lines
776 B
Vue

<template>
<i v-show="data.address_change_request&&$store.getters.isAdmin" class="fa fa-exclamation pointer requestModal" data-type="approveChangeAddress">
<modal-component class="animate__animated animate__fast animate__fadeIn" styleType="fill-in" type="approveChangeAddress" size="large">
<approve-change-address-form-component :data="data" :section="section" class="text-center"></approve-change-address-form-component>
</modal-component>
</i>
</template>
<script>
export default {
props: {
data: {
type: Object,
required: true,
}
},
data() {
return {
section:"changeAddressSection"
}
},
}
</script>