Due to [Vue 3.4](https://blog.vuejs.org/posts/vue-3-4): _"refactored
reactivity system that makes effect triggering more accurate and
efficient"_

closes: https://github.com/microsoft/playwright/issues/28830
This commit is contained in:
Sander 2024-01-03 20:48:41 +01:00 коммит произвёл GitHub
Родитель 58fa4fce74
Коммит eebb69121e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -288,6 +288,9 @@ window.playwrightUpdate = async (rootElement, component) => {
wrapper.component.slots = __pwWrapFunctions(slots);
__pwAllListeners.set(wrapper, listeners);
if (typeof slots !== 'undefined')
wrapper.component.effect.run();
for (const [key, value] of Object.entries(props))
wrapper.component.props[key] = value;

Просмотреть файл

@ -8,7 +8,7 @@
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.2.31",
"vue": "^3.4.0",
"vue-router": "^4.1.5"
},
"devDependencies": {