Skip to content

Commit

Permalink
feat:增加git_graph组件 (#1647)
Browse files Browse the repository at this point in the history
  • Loading branch information
redshade authored Aug 9, 2023
1 parent efe7085 commit dd2d500
Show file tree
Hide file tree
Showing 6 changed files with 984 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/devui-vue/devui/git-graph/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { App } from 'vue';
import GitGraph from './src/git-graph';

export * from './src/git-graph-types';

export { GitGraph };

export default {
title: 'GitGraph 提交网络图',
category: '演进中',
status: '100%',
install(app: App): void {
app.component(GitGraph.name, GitGraph);
}
};
Loading

0 comments on commit dd2d500

Please sign in to comment.