Skip to content

Commit

Permalink
fix: adjust unsupported v-model usage
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Nov 11, 2024
1 parent cb0f19f commit 1f13e0d
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,17 @@ export default {
get() {
return this.newConversation.displayName
},
set(event) {
this.updateNewConversation({ displayName: event.target.value })
set(displayName) {
this.updateNewConversation({ displayName })
},
},

conversationDescription: {
get() {
return this.newConversation.description
},
set(event) {
this.updateNewConversation({ description: event.target.value })
set(description) {
this.updateNewConversation({ description })
},
},

Expand Down Expand Up @@ -172,8 +172,8 @@ export default {
get() {
return this.password
},
set(event) {
this.$emit('update:password', event.target.value)
set(value) {
this.$emit('update:password', value)
},
},

Expand Down

0 comments on commit 1f13e0d

Please sign in to comment.