Skip to content

Commit 7ac758b

Browse files
committed
fix: #390
1 parent 2fff68f commit 7ac758b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"[typescript]": {
3-
"editor.defaultFormatter": "Vue.volar"
3+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
44
},
55
"[vue]": {
6-
"editor.defaultFormatter": "Vue.volar"
6+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
77
}
88
}

packages/vue-final-modal/src/components/CoreModal/CoreModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function getModalInstance() {
130130
131131
const index = computed(() => openedModals.indexOf(modalInstance))
132132
133-
watch(() => [props.zIndexFn, index.value], () => {
133+
watch([() => props.zIndexFn, index], () => {
134134
if (visible.value)
135135
refreshZIndex(index.value)
136136
})

0 commit comments

Comments
 (0)