diff options
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 23127a6fe16..40cae7d1ca3 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -63,6 +63,20 @@ export default { }, mixins: [SharesMixin, ShareDetails], + props: { + share: { + type: Object, + required: true, + }, + fileInfo: { + type: Object, + required: true, + }, + isUnique: { + type: Boolean, + required: true, + }, + }, computed: { title() { @@ -119,6 +133,11 @@ export default { this.onNoteSubmit() }, }, + watch: { + share(newShare) { + console.log('Shareeeeee prop changed:', newShare) + } + }, } </script> |