前言
官方组件链接:https://www.antdv.com/components/timeline-cn/
在官网粘贴了一个 demo
,浏览器控制台直接提示如下报错:
# SEO
[Vue warn]: Unknown custom element:
- did you register the component correctly?
For recursive components, make sure to provide the "name" option.
issues: https://github.com/vueComponent/ant-design-vue/issues/364
根据官方 github issues
提供的方法,加入如下代码:
import { Timeline } from 'ant-design-vue'
components: {
[Timeline.Item.name]: Timeline.Item
}
示例代码:
// page.vue
import { Timeline } from 'ant-design-vue'
export default {
components: {[Timeline.Item.name]: Timeline.Item},
data(){}
methods: {}
...
}