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 a setup where a component defines a prop through a mixin, the web-component that extends that component does not have access to the mixin's props
Pseudocode:
const mixin = { props: { 'test' } }; const base = { name: 'v-base', mixins: [mixin] }; const extender = { name: 'v-extender', extends: base } const mixiner = { name: 'v-extender', extends: base, mixins: [mixin] } extender.test // <-- not defined mixiner.test // <-- works
It's straightforward to work around this and may just be something that was never consciously implemented?
The text was updated successfully, but these errors were encountered:
karol-f
No branches or pull requests
In a setup where a component defines a prop through a mixin, the web-component that extends that component does not have access to the mixin's props
Pseudocode:
It's straightforward to work around this and may just be something that was never consciously implemented?
The text was updated successfully, but these errors were encountered: