From ee29156b126e25ce5ff1d7ba74d561ccd618eba9 Mon Sep 17 00:00:00 2001 From: ruibaby Date: Thu, 25 Apr 2019 23:39:09 +0800 Subject: [PATCH] Add timeline component. --- src/core/lazy_lib/components_use.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/lazy_lib/components_use.js b/src/core/lazy_lib/components_use.js index 5f654bbeb..ce86dbbd0 100644 --- a/src/core/lazy_lib/components_use.js +++ b/src/core/lazy_lib/components_use.js @@ -47,6 +47,7 @@ import { Skeleton, Comment, ConfigProvider, + TimeLine } from 'ant-design-vue'; Vue.use(Anchor); @@ -93,6 +94,7 @@ Vue.use(Upload); Vue.use(Skeleton); Vue.use(Comment); Vue.use(ConfigProvider); +Vue.use(TimeLine); Vue.prototype.$message = message; Vue.prototype.$notification = notification;