From 4dc9dd16d2eacc1079d1a063ebce38ef132b579c Mon Sep 17 00:00:00 2001 From: LONG Date: Wed, 19 Jul 2023 03:41:16 +0700 Subject: [PATCH] Update README.md https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md#0370-202266 `vueCompilerOptions.experimentalCompatMode` is renamed to `vueCompilerOptions.target`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a533cd9..91f4c1d 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ Volar preferentially supports Vue 3. Vue 3 and Vue 2 template has some different // ... }, "vueCompilerOptions": { - "experimentalCompatMode": 2 + "target": 2 } } ```