From: Evan You Date: Thu, 5 Dec 2024 15:40:57 +0000 (+0800) Subject: chore: disable options api in playground X-Git-Tag: v3.6.0-alpha.1~16^2~227 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d860276db12982e746d2c0089978fad4e528bd5;p=thirdparty%2Fvuejs%2Fcore.git chore: disable options api in playground --- diff --git a/playground/vite.prod.config.ts b/playground/vite.prod.config.ts index 18151ab2d3..f46710c693 100644 --- a/playground/vite.prod.config.ts +++ b/playground/vite.prod.config.ts @@ -17,6 +17,9 @@ export default defineConfig({ plugins: [ Vue({ compiler: CompilerSFC, + features: { + optionsAPI: false, + }, }), ], })