Skip to content
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
feat: add abstract property to the core property of the component
  • Loading branch information
ustbhuangyi committed Oct 15, 2020
commit 9c03bc4e60d343a4926f95a5d48e58acfcad9248
3 changes: 2 additions & 1 deletion packages/create-instance/create-component-stubs.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ function getCoreProperties(componentOptions: Component): Object {
style: componentOptions.style,
normalizedStyle: componentOptions.normalizedStyle,
nativeOn: componentOptions.nativeOn,
functional: componentOptions.functional
functional: componentOptions.functional,
abstract: componentOptions.abstract
}
}

Expand Down