ソースを参照

chore: disable options api in playground

Evan You 1 年間 前
コミット
5d860276db
1 ファイル変更3 行追加0 行削除
  1. 3 0
      playground/vite.prod.config.ts

+ 3 - 0
playground/vite.prod.config.ts

@@ -17,6 +17,9 @@ export default defineConfig({
   plugins: [
     Vue({
       compiler: CompilerSFC,
+      features: {
+        optionsAPI: false,
+      },
     }),
   ],
 })