From 94c55d3597dd7a588b603d03da824814832a6029 Mon Sep 17 00:00:00 2001 From: cocos02 Date: Sun, 14 Jun 2026 17:53:27 +0800 Subject: [PATCH] fix: editor PreviewPanel updates --- editor/components/PreviewPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/components/PreviewPanel.vue b/editor/components/PreviewPanel.vue index 3f83f4d..dfd0da5 100644 --- a/editor/components/PreviewPanel.vue +++ b/editor/components/PreviewPanel.vue @@ -15,7 +15,7 @@ watch(() => props.videoUrl, async (url) => { videoRef.value.src = url playing.value = false paused.value = false -}) +}, { immediate: true }) function togglePlay() { if (!videoRef.value) return