-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Web component with "is" attribute not rendered in the view. #2642
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
Comments
Hi! Please make sure to sure to ask the question on the forums or the gitter chat. You'll get faster feedback. We try to questions out of issues 😄 As for the question, I'm not sure I understand the point. Why would you ignore a component? Maybe you can use the v-pre directive http://vuejs.org/api/#v-pre |
Adding |
Thank you so much @posva and @yyx990803!! You made my day ^^ |
Wait, I forget to mention something... I also need to keep the other directives working. Since I extended an |
@SaidAhemtNolaroads that is indeed a problem - I've fixed it so that |
Hi there!
First of all thanks for your work. I'm using Vue everyday, and it's great!
I just encountered however a problem when I tried to use a Web Component (with webcomponentjs polyfill) with the
is
attribute, inside a view. However, this component works perfectly when I use a custom tag. The problem with the custom tag approach, is that I can't extend default HTML elements anymore.During my investigation, I noticed that Vue checks if the component is declared in the vm or not. But when the component is not declared, it's not rendered.
Is there a way to specify inside a view which component we would like to ignore during the evaluation of the template ?
The text was updated successfully, but these errors were encountered: