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
3.0.7
https://codesandbox.io/s/wonderful-wing-etp2p?file=/src/components/HelloWorld.vue
const BaseA = { created() { console.log("created A"); }, }; const MixinB = { mixins: [BaseA], created() { console.log("created B"); }, }; export default { name: "HelloWorld", props: { msg: String, }, extends: MixinB, };
console output:
created A created B
created B
function created() not called
The text was updated successfully, but these errors were encountered:
This is the same as vue-class-component issue#514 vuejs/vue-class-component#514
Sorry, something went wrong.
Duplicate of #3038
Successfully merging a pull request may close this issue.
Version
3.0.7
Reproduction link
https://codesandbox.io/s/wonderful-wing-etp2p?file=/src/components/HelloWorld.vue
Steps to reproduce
Here is a brief code:
What is expected?
console output:
What is actually happening?
console output:
function created() not called
The text was updated successfully, but these errors were encountered: