]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: disable options api in playground
authorEvan You <evan@vuejs.org>
Thu, 5 Dec 2024 15:40:57 +0000 (23:40 +0800)
committerEvan You <evan@vuejs.org>
Thu, 5 Dec 2024 15:40:57 +0000 (23:40 +0800)
playground/vite.prod.config.ts

index 18151ab2d3e08e7126b431f38cc79e141dfb90b6..f46710c69314a141ed282820f5d793209529cca9 100644 (file)
@@ -17,6 +17,9 @@ export default defineConfig({
   plugins: [
     Vue({
       compiler: CompilerSFC,
+      features: {
+        optionsAPI: false,
+      },
     }),
   ],
 })