8000 chore(types): add type definitions for Vue custom DOM render config by 7dingdang0 · Pull Request #1796 · VisActor/VRender · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore(types): add type definitions for Vue custom DOM render config #1796

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/vrender-core/src/interface/graphic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,18 @@ export type IGraphicStyle = ILayout &
} & SimpleDomStyleOptions &
CommonDomOptions)
| null;
/**
* 使用vue组件渲染内容
*/
vue:
| ({
/**
* vue 虚拟节点
*/
element: any;
} & SimpleDomStyleOptions &
CommonDomOptions)
| null;
};

export type IPickStyle = {
Expand Down
Loading
0