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.0-rc.8
https://jsfiddle.net/skirtle/p469rhax/9/
Note the console error: 'Failed to resolve component: SayHi'.
If you change MyChild: CompB to MyChild: CompA it all works fine.
MyChild: CompB
MyChild: CompA
Extending a component should inherit and merge the components and directives options just like it did in Vue 2.
components
directives
Only the render function gets inherited.
render
The example is intended to simulate a CLI project with a component that doesn't define its own <template> section.
<template>
The text was updated successfully, but these errors were encountered:
0cb7f7f
Successfully merging a pull request may close this issue.
Version
3.0.0-rc.8
Reproduction link
https://jsfiddle.net/skirtle/p469rhax/9/
Steps to reproduce
Note the console error: 'Failed to resolve component: SayHi'.
If you change
MyChild: CompB
toMyChild: CompA
it all works fine.What is expected?
Extending a component should inherit and merge the
components
anddirectives
options just like it did in Vue 2.What is actually happening?
Only the
render
function gets inherited.The example is intended to simulate a CLI project with a component that doesn't define its own
<template>
section.The text was updated successfully, but these errors were encountered: