您当前的位置: 首页 > 

王佳斌

暂无认证

  • 4浏览

    0关注

    821博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Ant Design Vue - 时间轴 <a-timeline> 组件粘贴官网demo直接报错

王佳斌 发布时间:2021-12-02 16:24:59 ,浏览量:4

前言

官方组件链接: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: {}
	...
}

在这里插入图片描述

关注
打赏
1665568777
查看更多评论
立即登录/注册

微信扫码登录

0.0364s