fix(Calendar): change props.data to props.date to fix getDate bug #7837 (#7838)

Co-authored-by: sanfordliao <sanfordliao@tencent.com>
This commit is contained in:
sanfengliao 2020-12-30 17:24:59 +08:00 committed by GitHub
parent 30c364449d
commit a5ce7f487f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ export default createComponent({
const shouldRender = computed(() => visible.value || !props.lazyRender);
const getDate = () => props.data;
const getDate = () => props.date;
const getTitle = () => title.value;
const scrollIntoView = (body) => {