From fd1a3f95990d7c372fa1c0c40c55caca761a33a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Exbrayat?= Date: Sat, 10 Jun 2023 11:17:21 +0200 Subject: [PATCH] fix(compiler-sfc): typo in experimental feature warnings (#8513) --- packages/compiler-sfc/src/script/defineModel.ts | 2 +- packages/compiler-sfc/src/script/definePropsDestructure.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/compiler-sfc/src/script/defineModel.ts b/packages/compiler-sfc/src/script/defineModel.ts index 2e7800aba..987e67fc1 100644 --- a/packages/compiler-sfc/src/script/defineModel.ts +++ b/packages/compiler-sfc/src/script/defineModel.ts @@ -30,7 +30,7 @@ export function processDefineModel( warnOnce( `This project is using defineModel(), which is an experimental ` + - ` feature. It may receive breaking changes or be removed in the future, so ` + + `feature. It may receive breaking changes or be removed in the future, so ` + `use at your own risk.\n` + `To stay updated, follow the RFC at https://github.com/vuejs/rfcs/discussions/503.` ) diff --git a/packages/compiler-sfc/src/script/definePropsDestructure.ts b/packages/compiler-sfc/src/script/definePropsDestructure.ts index 158491385..a81b4a5c5 100644 --- a/packages/compiler-sfc/src/script/definePropsDestructure.ts +++ b/packages/compiler-sfc/src/script/definePropsDestructure.ts @@ -34,7 +34,7 @@ export function processPropsDestructure( warnOnce( `This project is using reactive props destructure, which is an experimental ` + - ` feature. It may receive breaking changes or be removed in the future, so ` + + `feature. It may receive breaking changes or be removed in the future, so ` + `use at your own risk.\n` + `To stay updated, follow the RFC at https://github.com/vuejs/rfcs/discussions/502.` )