mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-09-01 19:04:22 +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;
|
|
}
|
|
}
|
|
|
|
} |