From 38f8ea55835fc30935b25aef7d8e5933724a027a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Fri, 1 Sep 2023 20:36:03 +0800 Subject: [PATCH] refactor(plugin-vue): deprecate reactivity transform --- packages/plugin-vue/src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/plugin-vue/src/index.ts b/packages/plugin-vue/src/index.ts index 3e9f6b18..fa7d92cf 100644 --- a/packages/plugin-vue/src/index.ts +++ b/packages/plugin-vue/src/index.ts @@ -73,6 +73,10 @@ export interface Options { * node_modules, so specify directories if necessary) * - `false`: disable in all cases * + * @deprecated the Reactivity Transform proposal has been dropped. This + * feature will be removed from Vue core in 3.4. If you intend to continue + * using it, disable this and switch to the [Vue Macros implementation](https://vue-macros.sxzz.moe/features/reactivity-transform.html). + * * @default false */ reactivityTransform?: boolean | string | RegExp | (string | RegExp)[]