소스 검색

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,
+      },
     }),
   ],
 })