Skip to content

Commit cf8490c

Browse files
committed
feat: new events;
style: formatting; chore: change eslint config;
1 parent 628fb86 commit cf8490c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfigWithVueTs(
1414
files: ['**/*.{ts,mts,tsx,vue}'],
1515
},
1616

17-
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
17+
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**', '**/apps/**']),
1818

1919
pluginVue.configs['flat/essential'],
2020
vueTsConfigs.recommended,

packages/vue-spring-bottom-sheet/src/BottomSheet.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ const backdropClick = () => {
129129
130130
let isOpening = false
131131
const open = async () => {
132-
if (isOpening) return;
133-
132+
if (isOpening) return
133+
134134
showSheet.value = true
135135
isOpening = true
136136
emit('opening-started')
@@ -215,7 +215,7 @@ const open = async () => {
215215
let isClosing = false
216216
const close = () => {
217217
if (isClosing) return
218-
218+
219219
showSheet.value = false
220220
isClosing = true
221221
emit('closing-started')

0 commit comments

Comments
 (0)