Skip to content
New issue

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

Nested Components #3

Open
jtillman opened this issue Apr 30, 2019 · 0 comments
Open

Nested Components #3

jtillman opened this issue Apr 30, 2019 · 0 comments

Comments

@jtillman
Copy link
Owner

If you have a nested component, the VueComponentTagHelper isn't fired for the component template. Since we define only components that we see, Vuejs doesn't know about the used component definition.

In Item Component

  <li>{{ Name }}</li>

In List Component

<ul>
  <item-component v-for="item in items" item="item">
</ul>

In Appliciation

<vue-application>
  <list-component></list-component>
</vue-application>

In the resulting JS, only the "list-component" is defined in Vue and not the "item-component"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant