mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-28 08:53:57 +00:00
28 lines
649 B
Vue
28 lines
649 B
Vue
<template>
|
|
<div class="row m-b-10 parentContainer bg-white">
|
|
<div class="col">
|
|
<order-header-component :data="this.data"></order-header-component>
|
|
<order-quick-view-component :data="this.data"></order-quick-view-component>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
'data': {
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
order: this.data,
|
|
}
|
|
},
|
|
watch: {
|
|
'data': function() {
|
|
this.order = this.data;
|
|
}
|
|
}
|
|
}
|
|
</script> |