8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Checklist
Tell us about your environment
Please show your full configuration:
const path = require('path'); module.exports = { root: true, env: { browser: true, node: true, jest: true, }, extends: [ 'plugin:vue/essential', 'plugin:vue/recommended', 'plugin:vue-a11y/base', 'airbnb-base', ], };
What did you do?
export default { props: { thing: { type: Object, required: true, }, mounted() { this.thing.nested = true; } }
What did you expect to happen? Error
What actually happened? No error
Repository to reproduce this issue
The text was updated successfully, but these errors were encountered:
Duplicate of #1314
Sorry, something went wrong.
@ota-meshi thanks for pointing this out.
Curious on why nested prop mutation would be allowed but regular prop mutation isnt.
It would catch the same issue and i personally think it should be guarded against.
WDYT?
Is there a way to introduce a strict flag you can toggle?
No branches or pull requests
Checklist
Tell us about your environment
Please show your full configuration:
What did you do?
What did you expect to happen?
Error
What actually happened?
No error
Repository to reproduce this issue
The text was updated successfully, but these errors were encountered: