Skip to content

Commit 6f99d85

Browse files
author
ruanzhixiong
committed
fix: 错误修复
1 parent fb58953 commit 6f99d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code/demo/3DCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const style: CSSProperties = {
1111
}
1212
// 验证范围
1313
const validatorFn = (val: Array<number>) => {
14-
return val.length === 2 && val[0] < -90 && val[1] < 90
14+
return val.length === 2 && val[0] > -90 && val[1] < 90
1515
}
1616
export const Card3D = defineComponent({
1717
name: 'Card3D',

0 commit comments

Comments
 (0)