From 85c804092f782d044e357757d18af468fa29a4e5 Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 12 Dec 2023 23:08:23 +0800 Subject: [PATCH] chore(sfc-playground): use dev mode by default --- packages/sfc-playground/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sfc-playground/src/App.vue b/packages/sfc-playground/src/App.vue index 1afd1bd279..e5e52dd426 100644 --- a/packages/sfc-playground/src/App.vue +++ b/packages/sfc-playground/src/App.vue @@ -26,7 +26,7 @@ const setVH = () => { window.addEventListener('resize', setVH) setVH() -const useDevMode = ref(false) +const useDevMode = ref(true) const useSSRMode = ref(false) let hash = location.hash.slice(1) -- 2.39.5