chore: lint files

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-07 22:37:19 +02:00
committed by Braks
parent 554ebebd13
commit 56e911c1e7
9 changed files with 231 additions and 227 deletions

View File

@@ -185,7 +185,9 @@ watchEffect((onCleanup) => {
prevValues.value.height = height
}
if (changes.length === 0) return
if (changes.length === 0) {
return
}
const direction = getDirection({
width: prevValues.value.width,
@@ -200,7 +202,9 @@ watchEffect((onCleanup) => {
const callResize = props.shouldResize?.(event, nextValues)
if (callResize === false) return
if (callResize === false) {
return
}
emits('resize', { event, params: nextValues })