feat(Calendar): add lazy-render prop (#6245)

This commit is contained in:
neverland
2020-05-08 20:03:23 +08:00
committed by GitHub
parent 2582d334ca
commit f344334e12
6 changed files with 79 additions and 2 deletions
+5
View File
@@ -68,6 +68,10 @@ export default createComponent({
type: Boolean,
default: true,
},
lazyRender: {
type: Boolean,
default: true,
},
showMark: {
type: Boolean,
default: true,
@@ -363,6 +367,7 @@ export default createComponent({
showMark={this.showMark}
formatter={this.formatter}
rowHeight={this.rowHeight}
lazyRender={this.lazyRender}
currentDate={this.currentDate}
showSubtitle={this.showSubtitle}
allowSameDay={this.allowSameDay}