mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-25 07:23:59 +00:00
18 lines
261 B
JavaScript
Vendored
18 lines
261 B
JavaScript
Vendored
export default {
|
|
props: {
|
|
'data': {
|
|
type: Object,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
item: this.data
|
|
}
|
|
},
|
|
watch: {
|
|
'data': function() {
|
|
this.item = this.data;
|
|
}
|
|
}
|
|
|
|
} |