admin管理员组文章数量:1345447
I'm currently using webpack with vuejs 2. I have a very basic ponent [Main.vue] that is rendered by vue-router and inside this ponent, I want to have another one [Information.vue]. For some reason, I can't render it properly.
ponents/test/Information.vue
<template>
<div>
TEST
</div>
</template>
<script>
export default {
name: 'information',
props: {
bleh: {
type: Object,
required: true
}
}
}
</script>
ponents/test/injex.js
export { default as Main } from './Main'
export { default as Information } from './Information'
ponents/test/Main.vue
<template>
<information :bleh="{}" />
</template>
<script>
import { Information } from 'ponents/test'
export default {
name: 'main',
ponents: { Information }
}
</script>
Any idea why I get the following error ?
[Vue warn]: Unknown custom element: <information> - did you register
the ponent correctly? For recursive ponents, make sure to
provide the "name" option
I'm currently using webpack with vuejs 2. I have a very basic ponent [Main.vue] that is rendered by vue-router and inside this ponent, I want to have another one [Information.vue]. For some reason, I can't render it properly.
ponents/test/Information.vue
<template>
<div>
TEST
</div>
</template>
<script>
export default {
name: 'information',
props: {
bleh: {
type: Object,
required: true
}
}
}
</script>
ponents/test/injex.js
export { default as Main } from './Main'
export { default as Information } from './Information'
ponents/test/Main.vue
<template>
<information :bleh="{}" />
</template>
<script>
import { Information } from 'ponents/test'
export default {
name: 'main',
ponents: { Information }
}
</script>
Any idea why I get the following error ?
[Vue warn]: Unknown custom element: <information> - did you register
the ponent correctly? For recursive ponents, make sure to
provide the "name" option
Share
Improve this question
asked Apr 12, 2017 at 19:46
Gabriel RobertGabriel Robert
3,0802 gold badges20 silver badges37 bronze badges
3
-
Is
Information
what you think it is? Do you see a vue ponent onconsole.log(Information)
right afterimport { Information } from 'ponents/test'
? – Amresh Venugopal Commented Apr 12, 2017 at 19:59 - @AmreshVenugopal Yes, I can console.log the ponent and actually see props. Also, doing this make the render possible. If I do not console.log(Information), the error is thrown. – Gabriel Robert Commented Apr 12, 2017 at 20:08
- 1 You should do - import { information } from 'ponents/test' – Pradeepb Commented Apr 13, 2017 at 22:06
2 Answers
Reset to default 4This is really old question but answering so that future visitors might get help:
Custom element shouldn't be self closed:
<information :bleh="{}" />
Make sure to use like this:
<information :bleh="{}"></information>
Thanks to @connexo for the ment:
Also for pliance with official web ponents, make sure you use a dashed tag like
<information-ponent ...></information-ponent>
For those who get error with the following:
Did you register the ponent correctly?
Make sure to apply the name option in your ponent
Try register ponent directly. I fixed my one by this.
Vue.ponent('Information', Information)
本文标签: javascriptUnknown custom elementdid you register the component correctlyStack Overflow
版权声明:本文标题:javascript - Unknown custom element - did you register the component correctly? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812873a2543394.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论