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
Cannot set property 'isRootInsert' of undefined #4589
Comments
It really looks like it's the same issue as #4584 Everything is fine with your code to this point: DocView.vue <template lang="pug">
div.view
section
section-def
dt(slot="title" v-html="doc.title")
dd(slot="desc" v-html="doc.desc")
section
section-header Examples but when you add |
Correct. It also only breaks because the slotted components have default slots of their own. Notice the named slot which contains a component with no slot, it works just fine. |
Since the patch was in the codegen, you will need to use updated If you want to test it yourself, you can clone the Vue repo, build everything and link (great job on vuetify, btw!) |
Thanks Evan, didn't think about those packages as well. Appreciate all the help. |
Vue.js version
2.1.7
Reproduction Link
repo https://github.com/vuetifyjs/docs.git#2.1.7-update
Steps to reproduce
Install deps, run dev, navigate to any view that uses a top level component with a default slot, layouts for example.
What is Expected?
The view to load
What is actually happening?
Error Cannot set property 'isRootInsert' of undefined
Additional
I've been following #4584 and pulled down the updated patch and tested it with no difference in results.
The text was updated successfully, but these errors were encountered: