We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the CommentEditor.vue component, we are using some bad Vue.js practice by not using a computed property. Instead, it will use a data property.
CommentEditor.vue
data() { return { comment: this.content || null // ... }; }
comment should rather be a computed property and used there. Be careful with changing it, because the data is also used as v-model in the textarea.
comment
v-model
Resources
The text was updated successfully, but these errors were encountered:
assign me to this one... @igeligel
Sorry, something went wrong.
No branches or pull requests
In the
CommentEditor.vue
component, we are using some bad Vue.js practice by not using a computed property. Instead, it will use a data property.comment
should rather be a computed property and used there. Be careful with changing it, because the data is also used asv-model
in the textarea.Resources
The text was updated successfully, but these errors were encountered: