Vuejs 在另一个组件中导入组件
Posted
技术标签:
【中文标题】Vuejs 在另一个组件中导入组件【英文标题】:Vuejs import component in another component 【发布时间】:2020-07-23 11:34:57 【问题描述】:我创建了一个dashboard.vue 组件并将table.vue 组件导入其中,但是table.vue 没有出现在我的网页和vue.dev 工具中。
当我在 app.vue 中导入 table.vue 时没有问题。
在我的文件下面。
提前致谢!
//dashboard.vue
<template>
<div>
<table></table>
</div>
</template>
<script>
import table from "./table";
export default
name: 'Dashboard',
component:
table,
</script>
<style >
</style>
//table.vue
<template>
<div>
<p>Test</p>
</div>
</template>
<script>
export default
name: 'Table',
</script>
【问题讨论】:
欢迎,您可以在这里上传您的代码吗:codesandbox.io 【参考方案1】:您不能将组件命名为与保留的 html 元素相同的名称。将其更改为my-table
。
你需要映射它:
component:
'my-table': table,
【讨论】:
我用 mytable 替换了所有表,我得到了 未知自定义元素:以上是关于Vuejs 在另一个组件中导入组件的主要内容,如果未能解决你的问题,请参考以下文章
在 VueJS 组件中导入使用 getElementById 的模块
如何在 laravel 5.3 + VueJs Routes 中导入外部组件