chore(Swipe): limit the decimal length of transform (#12337)

This commit is contained in:
neverland 2023-10-04 11:33:51 +08:00 committed by GitHub
parent 2bb4b85b5d
commit 4ac80602e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,9 @@ export default defineComponent({
const trackStyle = computed(() => {
const style: CSSProperties = {
transitionDuration: `${state.swiping ? 0 : props.duration}ms`,
transform: `translate${props.vertical ? 'Y' : 'X'}(${state.offset}px)`,
transform: `translate${
props.vertical ? 'Y' : 'X'
}(${+state.offset.toFixed(2)}px)`,
};
if (size.value) {