@nuxt/docs-nightly 4.0.0-29199395.45d26c48 → 4.0.0-29202599.5abd6bc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -784,7 +784,7 @@ This change should generally improve the expected behavior, but if you were expe
|
|
|
784
784
|
query: { id },
|
|
785
785
|
immediate: false
|
|
786
786
|
)
|
|
787
|
-
+ watch(id, execute, { once: true })
|
|
787
|
+
+ watch(id, () => execute(), { once: true })
|
|
788
788
|
```
|
|
789
789
|
|
|
790
790
|
To opt out of this behavior:
|