We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fff68f commit 7ac758bCopy full SHA for 7ac758b
.vscode/settings.json
@@ -1,8 +1,8 @@
1
{
2
"[typescript]": {
3
- "editor.defaultFormatter": "Vue.volar"
+ "editor.defaultFormatter": "dbaeumer.vscode-eslint"
4
},
5
"[vue]": {
6
7
}
8
packages/vue-final-modal/src/components/CoreModal/CoreModal.vue
@@ -130,7 +130,7 @@ function getModalInstance() {
130
131
const index = computed(() => openedModals.indexOf(modalInstance))
132
133
-watch(() => [props.zIndexFn, index.value], () => {
+watch([() => props.zIndexFn, index], () => {
134
if (visible.value)
135
refreshZIndex(index.value)
136
})
0 commit comments